Search results

  1. 4

    "OUTPUT TO" and Folder Creation

    What do you use to do it does not matter a lot (a setup or with scripts or something else), but you'll have to reproduce your application directory tree.. should be one of the first things to do. Or else nothing will work. No way you can go around this step. If you want to do it from progress...
  2. 4

    "OUTPUT TO" and Folder Creation

    I m thinking about why, if your program has to create an output to a folder .. does not create the directory or even checks if exists. To recreate all the structure .. you should retrieve the path information and create it if does not exists .. But.. are you sure you can't use some...
  3. 4

    Question Infinite loop issue

    Infinite is a time like ..? Ten minutes? Half an hour? One day? More? The two environements have two distinct databases or they just run on the same data?
  4. 4

    How to change dcolor of cell in browse widget - CHUI

    I think if you put a number (a constant) at the iCounter place, it works.. it wants a fixed value if i remember correctly. I think you should do it another way.. or so i have seen something like that done. Here it is how i did it also the same.. don't know if there's another way but this one...
  5. 4

    search and highlight

    i think you can manage to obtain that.. i hope you have defined a query "for scrolling" and the browse is based on temp-table fields you need to process an event on the button, then do your query on temp-table with the appropriate filter even you have finded the row, you must tell the browse...
  6. 4

    Call C# dll from within Progress 4GL

    I work on an (as would say Tom) ancient and obsolete version of Progress. I think you can maintain your dll only if you build an exe or some kind of a wrapper ( in c++ o c ) that you can refer in progress as showed above (or the way you used before, i think it's almost the same). Then this...
  7. 4

    How to decode string

    But why you need to decode an encoded password? Usually only thing you do with passwords is check if they're equal to what the user has written.. And if you want to change it someway ( an administrator privilege, i guess ) you can, i think, easily create a program that does the job ( even...
  8. 4

    Comma separated string

    Use space as separator ( default one used by ENTRY if i m not wrong ). As suggest tamhas, you do not need another one for the list above.
  9. 4

    calling a function from inside another fucntion

    Uhm maybe it's not your problem, but why don't you use names with "_" character and not "-" or you just remove the "-" ? I.e. fun_1, l_d, fun_2, etc or fun1, ld, fun2..
  10. 4

    (+) in the query

    Yes. Right Outer or Left Outer, depends on the side of the "=" it is specified..
  11. 4

    how to define and use dynamic delimiter when using import Statement

    As it says sharkdim, you could import an entire line at a time and then manage your variables easily with NUM-ENTRIES and ENTRY functions..
  12. 4

    Crystal report printing problem

    Sorry i have been unable to access forum for a while. You say that on another server it works even if logged through rd ( remote desktop ). But it's difficult to say where it's the problem, maybe something in the two servers installation of CR it's different or there's some issue in the user...
  13. 4

    Crystal report printing problem

    I would suggest you to verify the two printer settings first and check if the're equal. Then to be sure that the user/psw you use in your code work fine even connecting the printer on the production server. At least can you somehow create a document in CR in preview and verify it can be...
  14. 4

    Connecting Progress DB to SQL Report Model

    So he could try to regenerate the statistics, analyze the queries to discovery if they're properly structured and check if this two things speed up the reporting processes. If it does not work, he could think if he needs all five years data or not.. and what could be the solution. Good luck!
  15. 4

    Connecting Progress DB to SQL Report Model

    Sorry but i do not understand the idea that all data ever been inserted in a system must be maintained online on the same db, but may be it is my personal fault. Even using indexes if there is a lot of things to read will take a longer time than if you have less things to read.. am i wrong...
  16. 4

    Connecting Progress DB to SQL Report Model

    The question that i have is.. You have all the five years data online on your software production system? Then as user i would expect that reports analyze all data that i can query into the software.. And that surely will affect your db performances.. But your system will already be...
  17. 4

    Creating AutoNumber field

    In my idea Tom said the better thing to do. Make your decision and then align the code to this method. Try not to go into further troubles having different solutions ... If you want, write some source code to use for create the new record and make all the others use that code ( inside it you...
  18. 4

    ODBC Connection with C#

    The .NET Framework Data Provider for ODBC wrapper class library can be used to connect to the Progress db, i think. Try this connection string. HOST=myServerAddress;DB=myDataBase;UID=myUsername;PWD=myPassword;PORT=port_number;
  19. 4

    Who has deleted my record???

    You mean that asking who did this does not produce results? Very unusual. I dont know of any method to discover this in sql server, oracle, or either mysql ( my knowledge is not so great, maybe i am wrong ): if you dont have a trigger or a procedure or something that writes ( i.e. ) some...
  20. 4

    Alert Boxes

    If you want only to close the specific warning-box you could try to write a vb-script ( or another kind of language of your choice ) that checks if there are windows opened with a specific title ( i.e. ) and closes the window. It seems to me the only way to proceed if you cant modify the...
Top