Search results

  1. G

    Serial port trouble

    What is the definition of your DCB structure in Progress? Regards, Gabor
  2. G

    Serial port trouble

    Hi, Have you tried GetLastError()? What was the result of it? Regards, Gabor
  3. G

    Codepage Hungarian

    Hi, 1. Our databases run on UNIX (AIX,Linux,HP-UX) using iso8859-2 codepage. 2. The WIN clients are using codepage 1250. 3. We use UNIX scripts instead of built-in Progress conversion. (UNIX tr command) 4. I can send hungarian promsgs file if you send your e-mail address to me. It is...
  4. G

    Codepage Hungarian

    Hi, In Hungary we use 852, ISO8859-2 and 437 (old printers without full hungarian charcater support) codepages. In our application we maintain a table where we can describe what kind of printer (codeapge) is supported on the workstation. When we print the application send the appropriate...
  5. G

    MS Windows Browse Selection Character

    Hi, This is a bug we have reported in 1998. From V9.1A Progress introduced new entries in the inifile called BrowseRowMarker and SysCheckmark. Here you can specify your marker character. Details you can find in the Product Update Bulletin...
  6. G

    How can I get which .pf and .ini used in the current program?

    Hi, You can use Win32 API function called GetCommandLineA. This returns the command line you can extract any information. See details in KBase 21972: http://www.progress.com/services/support/cgi-bin/techweb-kbase.cgi/dispentry.p?kbid=21972 Regards, Gabor
  7. G

    Urgent and Immediate: SQL92 trigger not fired.

    Hi, There are reasons written in KBase 21181. It seems your LIBPATH/PROLIBPATH settings are not correct. http://www.progress.com/services/support/cgi-bin/techweb-kbase.cgi/dispentry.p?kbid=21181 Anyway, how could you install patch 9.1C16 on 9.1B? Regards, Gabor
  8. G

    How can I get which .pf and .ini used in the current program?

    Hi, CTRL+ALT+SHIFT+F1 shows some environment settings (like ini file name). It might help you. Regards, Gabor
  9. G

    Negative PID's in Promon

    Hi, This is a Progress bug I reported three years before. Here is the answer from EMEA support: Dear Gabor Topor: This is a minor bug in that the process id should be an unsigned integer but we have it defined as signed. It does no harm but is is displayed incorrectly. Please do not...
  10. G

    Schema Trigger Example PLEASE!!

    Hi, Read KBase 19063 about client record buffering. You might see an old copy of your records. Regards, Gabor
  11. G

    Schema Trigger Example PLEASE!!

    Hi, Here is a very simple trigger procedure: TRIGGER Procedure for CREATE of mytable. ASSIGN mytable.rec-id = next-value(mytable_seq). When you create a record in table mytable it automatically assigns the rec-id field using the next sequence value. Regards, Gabor
  12. G

    Still searching how to load the content of a .d file

    Hi, You may try this one: def var s as char no-undo. s = "mytable". output to load.p. put unformatted "input from " + s + ".d." skip. put unformatted "repeat:" skip. put unformatted " create " + s + "." skip. put unformatted " import " + s + "." skip. put unformatted "end."...
  13. G

    connecting to progress db on NT

    Hi, Make sure mat_data 6601/tcp is in your system32\drivers\etc\services file. If it is the last entry of the services file, make sure that at least one new line exists after it (because of a known Microsoft behavior). Regards, Gabor
  14. G

    Connect v8 with v9 client

    Hi, Try to connect to it as a remote client. E.g.: connect dbname -H hostname -S servicename|port You can also connect to it using Data Dictionary but specify host and service name. Best regards, Gabor
  15. G

    Connect v8 with v9 client

    Yes, you can connect to V8 database without ODBC. Regards, Gabor
  16. G

    right alignment

    Hi m1_ru, Thanks, this solution works but it requires rewriting the whole application. I'm looking for a very simple solution to right align text in browse widget. I found simple solution in case of editor and fill-in widget under Windows XP just pressing : CTRL+LEFT SHIFT = align text to...
  17. G

    right alignment

    Hi, Is there a way to right align character columns in browse widget? What about their labels? Best regards, Gabor
  18. G

    mscomctl.ocx

    Hi, You may process BeforeClick and cancel the operation. Regards, Gabor
  19. G

    Retrieve Process ID / Client ID from Procedure editor V8.3C

    Hi, 1. In V8 you can use the GetCurrentProcessId API call to retreive the PID and find your _Connect record. Example: DEFINE VARIABLE intProcessHandle AS INT NO-UNDO. PROCEDURE GetCurrentProcessId EXTERNAL "KERNEL32.DLL": DEFINE RETURN PARAMETER intProcessHandle AS LONG. END...
  20. G

    SQL 92--How to execute a query

    Hi, 1. Try to use 'pub.state' instead of 'state' 2. You can use set schema 'pub' ... 3. SQL tables are not visible from Data Dictionary. You can use system tables to examine them. Best regards, Gabor
Back
Top