Search results

  1. K

    dump with komma delimiters

    use the DELIMITER option with the export: eXample: DEFINE STREAM sExport. OUTPUT STREAM sExport TO VALUE("name.d":U). FOR EACH sports2000.customer NO-LOCK : EXPORT STREAM sExport DELIMITER ";":U sports2000.customer. END. OUTPUT STREAM sExport CLOSE.
  2. K

    GUI for windows and linux

    Hi there, we need to develop a few screens for inputting/consulting some data on a windows AND a linux system. What is the best way for doing this knowing that there is not a lot of experience in JAVA or .NET. all tips are welcome thanks
  3. K

    Progress error

    Hi DevTeam, thank you for the fast answer. I downloaded progressKB and found an KB (P47820) telling the same thing you do. I'll adapt my source and try it with os-copy an os-delete greetZ ks
  4. K

    Progress error

    Hallo, i'm having a problem with renaming a file. we export data to ASCII files so they can be imported by another application, this application scans a directory for new files. To avoid that the application starts reading a file before it is completly ready we first write it to a temporary...
  5. K

    wmp.dll

    Thanks Marian, Life can be simple, just have to know
  6. K

    wmp.dll

    Hallo, We got a POS aplication that shows movies on the customer display, I would like to open these movies and show them in the window (for AVI I found an example on global-shared, which works fine, but only for avi). So I hoped to be able to open other movies using the wmp.dll, which can be...
  7. K

    Error 392

    We got a strange phenomenon at a customer. On 2 different machines and with a gap of 3 weeks, we got the following error: ERROR:shrlib.pl<<s_initbl.r>> Shared variable TXS has not yet been created. This is an unknown variable to us. We searched it through to complete application :confused...
  8. K

    Smartpak

    Hi, I was looking around on the progressTalk, to find a way to put a calendar on a screen using dll or ocx. when I read about the smartpak, this looked like a nice solution, but 1. Is this still up to date, I don't seem te be able to find the latest version 4.4 (got 4). 2. Can it be used with...
  9. K

    comdlg32 flags and return value

    thanks Oscar, for replying on my issue, I solved it with the following code: /* Set error flag, to trap cancel button or escape */ chCtrlFrame:CommonDialog:CancelError = TRUE. chCtrlFrame:CommonDialog:Showfont() NO-ERROR. IF NOT ERROR-STATUS:ERROR AND...
  10. K

    comdlg32 flags and return value

    I'm using the common dialog OCX to manage fonts, and store them in a database, but I got 2 problems with it. - How can I know the user pushed the "cancel" button or closed the object? - I presume progress uses the same ocx to edit fonts, however the color selection doesn't appear in the...
  11. K

    Tab order and different frames

    I got the following question, we created a program with different frames, depending on some input parameters we hide or show one or more frames. The problem is to control the tab order. At this time we cheque every tab and back-tab to go to the next or previous field/frame. This way...
Top