Search results

  1. grinder

    Question Timeout in a linux environment

    Hello there, we have many users who don't disconnect when leaving the office. Applications runs on Red Hat Enterprise Linux Server release 6.3 (Santiago) Is there any startup-parameter to set the timeout for idle users? Or any other idea how to handle this issue? Thank you in advance.
  2. grinder

    Debugging in a CHUI

    Hello there, once again I need a little help from you. First of all: Is it even possible to debug an application that runs on Red Hat Enterprise Linux Server release 6.3 (Santiago) in a ChUI? If not, thread closed ^^ The frontend of the app I want to debug is displayed via TeraTerm, Progress...
  3. grinder

    Question Print bitmap in character client environment

    Hello folks, in a new project I have to print a logo on an invoice. The environment is from 1980 (not really, but it looks like), based on Unix with character client, but Progress 11.6 :) The invoices are printed via OUTPUT THROUGH VALUE(cPrinter). Any ideas how to solve this issue? I thought...
  4. grinder

    Connect DB running on a Unix system to a Windows Development environment

    Hello folks, I'm really sorry to bother you with this maybe stupid question, but as I'm relatively new to database-administration I might bother you a little bit more in the future :D First, how do I get the database which runs on an unix server connected to my Windows environment? I read...
  5. grinder

    Resolved Static instance failed to load. Cannot reference class xyz (14631)

    Hi folks, I'm facing a strange bahaviour in some of my programs. After a full-compile I get the runtime error Static instance failed to load. Cannot reference class xyz (14631) If I compile those programs after a full-compile again I don't get this error. And I don't use "minimize size" for...
  6. grinder

    Resolved Delete() In Combobox

    Hi there, I have a little problem with a combobox and I don't get it ^^ There's a combobox which is filled with a list of some printers, not SESSION:GET-PRINTERS(), just a comma-separated string, e.g...
  7. grinder

    Determine If Pdf Has Editable Text Fields

    Hello there, I looking for a method to determine if a PDF-file has editable text fields. Does anybody have something in mind? I searched "C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32Res.dll" with the com-viewer, but I couldn't find anything in this regard. Thx in advance....
  8. grinder

    Print document via wordpad

    Hi there, I want to do a printout on an Espon Receipt printer. Now it is solved via an output stream directly on the printer (OUTPUT TO blabla-stream. DISPLAY "text". OUTPUT CLOSE.). As it is not possible in 4GL to give the printed elements a format (like different fonts, font size or bold...
  9. grinder

    RUN VALUE(cProgName) with parameter

    Hi folks, situation is like this: A var named cProgName is filled on runtime with the name of the module that should be invoked. Like this: RUN VALUE(cProgName). Is it possible to send an input-parameter to this module? This gives a syntax-error: RUN VALUE(cProgName(INPUT nInputParameter))...
  10. grinder

    Simulate CTRL-Key pressed in browser

    Hi there, is it possible to simulate the CTRL-Key in a browser in order to select multiple lines without using the CTRL-Key on the keyboard? Thanks in advance.
  11. grinder

    Syntax-Highlighting for Character Strings

    Hi folks, I searched on the internet and also in this forum here, but I didn't find a solution for my problem. Since a few weeks, my syntax-highlighting does not work anymore, look at the screenshot: So you can see that keywords are hightlighted as usual and in AppBuilder -> Options ->...
  12. grinder

    OpenText in Excel for a semicolon-separated txt-file

    Hi, I just want to open a TXT-file in Excel. Here is how I am trying to do that: DEFINE VARIABLE chExcel AS COM-HANDLE NO-UNDO. DEFINE VARIABLE cFileName AS CHARACTER NO-UNDO. cFileName = fiFileName:SCREEN-VALUE IN FRAME {&FRAME-NAME}. CREATE "excel.application":U chExcel...
  13. grinder

    wordappl:document:saveas - problem

    Hi everyone, I save a worddocument via progress and then I have a strange problem. If I use wordappl:document:saveas then in the fileinfo (title there) you can read the first line of the text. And here is my problem. If I want to send this via an email in word, then you get this "test" in...
  14. grinder

    Syntax Error :/

    Hi, sorry to bother you with this stupid question, but I don't get this error fixed: edDetails:SCREEN-VALUE = edDetails:SCREEN-VALUE + (IF fiUmsDateVon:SCREEN-VALUE <> "":U THEN "Datum":T10 + ":":U + CHR(9) + CHR(9) + fiUmsDateVon:SCREEN-VALUE + " - ":U +...
  15. grinder

    How do I bring Lotus Notes on top

    Hello everybody, I have a strange issue which is driving me crazy. Is there any possibility to set Lotus Notes to topmost application? I have created an email and now I just want to show it :( Can you please help me?? thx in advance
  16. grinder

    OLE in Progress

    Hello everybody, does anyone of you know a good documentation about the usage of OLE (especially WinWord)?? I think about opening documents and formatting them. greetz grinder
  17. grinder

    How to color row in browse?

    Hi, my problem is, that I want to color one specific row in a browse. The browse is based on a temp-table. In the ROW-DISPLAY-Trigger I use the following code: DEFINE VARIABLE h AS HANDLE NO-UNDO. mnBGColor = IF tUms.tSort = 0 THEN 14 ELSE ?. h = BROWSE-Ums:HANDLE. ASSIGN...
  18. grinder

    Special characters via XML

    Hello Everybody, i try to import data via XML and i have a problem when there are special characters in the file. e.g. when the string is "äöüÄÖÜ-áéíóú-àèìòù-âêîôû" then the string in my DB is "„”Ž™š- ‚¡¢£-…Š•—-ƒˆŒ“–" I tried to convert it with mcCurrVal = CODEPAGE-CONVERT(mcCurrVal...
Top