Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ElvisUntot
  • Content: Threads
  • Order by date
  1. ElvisUntot

    unzip in different folders

    i have a few hundret zip files. each with files that MAY! have the same name. i neet to extract them in folders that are similair to the names of the .zip file. <target name="extr"> <unzip dest="temp"> <fileset dir="source"> <include name="*"/> </fileset> </unzip> </target> unzips...
  2. ElvisUntot

    extract report definitions

    i am searching for a way to get the COMPLETE structure of a report into an xml or txt file (and hopefulle, but not required) back again for a automatic check what was changed between 2 versions of an report. the export report definitions in the file/export menue is not complete :( if anyone...
  3. ElvisUntot

    start script for cvs

    we use a little script like this #!/bin/sh /usr/bin/cvs -f --allow-root=/proj/cvsroot/cvshubentw --allow-root=/proj/cvsroot/x1 --allow-root=/proj/cvsroot/x2 --allow-root=/proj/cvsroot/x3 [go on for a while] --allow-root=/proj/cvsroot/x23 pserver it works quite fine, but it does not look very...
  4. ElvisUntot

    computer emulating an usb device for an other computer?

    hi! i want to connect 2 computers via usb and the first computer should behave like an keyboard, memorystick, <insert various other things> for the second computer. has anybody an idea how to do that?
  5. ElvisUntot

    spool like under sql+

    when i use oracles sql+ (or oracle worksheet) i can use the commands "spool <filename>" and "spool off" to save a logfile to the drive. now i need to do a program that gives me a log each sql that is done. but since "spool" does not seem to be a regular sql-command, i have a problem with that...
  6. ElvisUntot

    Ansi C/C++ in VS2003

    is it possible to compile ansi c/c++ in visual studio 2003?
  7. ElvisUntot

    fill cr from array

    i need to fill an cr from an array instead from an database. any tips how to do that?
  8. ElvisUntot

    migration from 8.5 to 10 -&gt; Cdo32.dll

    i am migrating a program from cr8.5 to cr10. i am now wondering about the Cdo32.dll it seems there is no new version of this dll. but i am not sure if there is perhaps a new dll which replaced it. or would it be wise to just keep the old dll?
  9. ElvisUntot

    Exports from CR 8.5 -&gt;quality and errors

    we are exporting reports to word, excel and pdf. the problem is, the quality is average to bad (up to 1,5cm differences in a pdf report and missing parts in word and excel) (i have not yet the source to look into) now my question, does anyone know if the exports are really that bad and if they...
  10. ElvisUntot

    filling report with XML over vb(.net)

    i need to fill a report with data stored in an xml file. i can use vb to do this (either as a programm or an .dll) has someone done that before?
  11. ElvisUntot

    how to extract code fom report with vb6

    i am trying to extract the code in my reports with vb6.0 the code for the funktions was easy. For i = 1 To report.FormulaFields.Count s1 = report.FormulaFields(i).Name s2 = report.FormulaFields(i).Text Next i but now i need to extract the code for the formating of the header, detail...
  12. ElvisUntot

    wrong classname in cr

    we created a few dll that are used in crystal 8.5 the projectname was CRUFLxxx and it was always shown as xxx in all reports. but now on one of the development computers it is shown as CRUFLxxx in the reports which does the code in the report not good. anyone had this problem before?
  13. ElvisUntot

    long raw (migration from ora 8)

    i have a view that contains: decode(unt.user_id,null,lo.def_lob,unt.img) as img, lo.def_lob and unt.img are both long raw fields. it looks like you can not use long raw in a decode in 9.x has anybody an idea how to chance the decode()? to change the fields from long raw to something else...
  14. ElvisUntot

    kill/find word instances

    i do have a few word instances (can only be seen with the taskmanager/processes window) and want to find/kill them with vb. i use vb6.0 and word 2000.
  15. ElvisUntot

    read unicode file and display it

    can anyone tell me how to read an unicode file and how to display it?
  16. ElvisUntot

    i18n problem: displaying asian, arabic... chars.

    is there way to display asian or arabic characters in a vb app?
  17. ElvisUntot

    [oracle] problem with -long raw-

    i got 2 tables. table 1 consists of an index, a boolean field and a long raw field table 2 has just a long row field (with only one entry) now i need a result with everything in table 1. but the long raw from table 1 schould be replaced with the data from table 2 if the boolean field...
  18. ElvisUntot

    CR+VB6.0+WinXP=error?

    We wrote a pprogram under Nt4.0 and W2k, which showed and printed reports using the activeX controlls. we now tried to use the program on winXP (pro) and now we get an error everytime. [Errornumber: -214706462 [Errorsource: CrystalReports ActiveX Designer [Errortype: Dos error. does anyone...
  19. ElvisUntot

    DOS-Error?

    A customer of us is getting an &quot;DOS-Error&quot; when he tries to print an report using vb6.0 and cr 8.5 does anyone know what kind of error this is? (we are not able to reproduce this error but he is)
  20. ElvisUntot

    {bla.blubb} = null (= &quot;&quot; / = nothing)

    I am in an Subreport and need to test if a reportset did contain any data (the subreport is not to be shown if the report is empty) so i went to &quot;format&quot;/&quot;don`t show(no drilldown)&quot; and tried {bla.blubb} = &quot;&quot; but that does not work. I really would be happy, if...

Part and Inventory Search

Back
Top