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 TouchToneTommy 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: *

  1. greggory

    Segmentation fault

    I think Olded is right. Personnaly my compiler (7.5) does not accept prompt inside input statements unless prompt gots its end statement. # untested of course INPUT w_manno, w_surname WITHOUT DEFAULTS FROM manno...
  2. greggory

    Influence of number of indexes on a table

    I'm asking myself if there is a limitation about the number of indexes created on a table ? What kind of influence on the performance may this have. For example we have a table with 6M records and 15 indexes. I'm asking myself if it is a good idea to create a new one to speed up a specific...
  3. greggory

    How to change the directory for open form

    Hello, We have an application in several languages where each language has its own directory. Each directory contains the same forms (.frm) and I want to know if it is possible to change or set the directory where the "open form" or "open window" instruction look at ? This way we can easily...
  4. greggory

    Informix 4GL call JAVA Program

    I'm almost sure you cannot. What you can do is: - call an external program that runs a Java program - this java program generates a file - you then load the file into 4gl - you can then do what you want Imagine we have a java program called 'my_prog.java'. This program writes data I need...
  5. greggory

    Print logo in report

    In fact I never pass the structure. It is defined in my C file as an 'extern _sorry_cant_remember_type_ *c_rp'. This 'c_rp' is generated when compiling (It appears in .4ec files). When looking through this files, it seems to be updated, but my code never gets the value. It is strange. I want...
  6. greggory

    Increasing 32K PCode size limit within a function

    Sorry I cannot help, I just have a question because I can't figure out how to use the debugger... So my question is : can you explain to me how do you use the debugger ?? I use RDS 7.x, IDS 9.x on an AIX system. Thanx in advance, if can then help you :)
  7. greggory

    Print logo in report

    Hello, I've found an interesting article about printing logos in reports, but it uses an 'c_rp' structure in a C file. It seems that the file descriptor in this structure is never up-to-date, so I can't print out my logo :-( When I try to print out values of c_rp->*something*, I always get a...
  8. greggory

    How to printing Barcode of Laser Printer

    Another way to print barcodes is explained there: http://www.iiug.org/software/index_I4GL.html Some resources are related to printing barcodes. The principle if far different than what is explained by 'olded'. It's in fact printing small black boxes. We use Hp printers and this works.
  9. greggory

    Compile to library

    Does anyone knows if it's possible to compile a 4GL file into a (static or dynamic) shared library (.so or .a). I tried some time ago but couldn't figure out how it works...
  10. greggory

    String LENGTH

    What are you trying to do ? In fact, length() return the length of the string without trailing. The length of the full string is the length you gave in the define clause... for a char variable.
  11. greggory

    checking for multiple instances of a 4gl program.

    I don't know what a Genero Desktop is ? If you have a database, you can use a special table to log sessions ? If you can access Unix Shell, you can run a 'ps' command to find out if there is another instance of the same program running ? Etc...

Part and Inventory Search

Back
Top