Search results

  1. G

    idxbuild reports SQL92 problem

    we tried 9.1D09 and 9.1E04 on AIX 5.2
  2. G

    idxbuild reports SQL92 problem

    Index definition looks like: ADD INDEX "xxx ON "MyTable" AREA "Schema Area" UNIQUE INACTIVE INDEX-FIELD "f1" ASCENDING INDEX-FIELD "f2" ASCENDING INDEX-FIELD "f3" ASCENDING INDEX-FIELD "f4" ASCENDING where f1, f1 , f3 are integer anf f4 is decimal (FORMAT "->>>>>9.9<<<<<"). What is...
  3. G

    idxbuild reports SQL92 problem

    Hi All, After 4GL schema update we try running proutil idxbuild but it fails with the following error message: "Index xxxxxxxxxx has a component with a not yet supported SQL92 datatype." where xxxxxxxxxx is our index name. I searched KBase without any success. (we tried in 9.1D and...
  4. G

    JDBC set-up for WebSphere CE

    Hi, Can somebody help me to configure Progress JDBC driver for WebSphere CE (Apache Geronimo)? Best regards, Gabor
  5. G

    Web Browser.ocx

    Hi, You can use CommandStateChange() event and you can check status of the Navigate Back button. It becomes disabled when you reach the first visited page. see details at http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/reference/objects/webbrowser.asp Best...
  6. G

    Acrobat Reader - pdf.ocx

    I downloaded the files and could run it without any error with V9.1D (PROGRESS Version 9.1D as of Wed May 8 17:24:00 EDT 2002). Please try to download them again. I'm using Adobe Reader 6.0 . Best regards, Gabor
  7. G

    Acrobat Reader - pdf.ocx

    I tested with 10.0B03 on XP and it works fine. What is the error message exactly?
  8. G

    Acrobat Reader - pdf.ocx

    Hi Can you describe your environment (op.sys,Progress version, etc.) Best regards, Gabor
  9. G

    Acrobat Reader - pdf.ocx

    Hi, Here is an example program for PDF viewer (see attachment) Best regards, Gabor
  10. G

    IBM AIX debugger

    Hi dbx and adb are part of bos.adt.debug package, but you can check the package availability with the following command: lslpp -l|grep bos.adt.debug I think you can use it for all Progress execuable. Best regards, Gabor
  11. G

    SQL-99 implementation

    Has anybody information about SQL-99 support (current situation/dev. plan, etc.)? Best regards, Gabor
  12. G

    Configuring Progress 8.3b to read Windows COM1

    Hi, You might use INPUT FROM <opsys device > to read COM port and store it with standard 4GL commands. Best regards, Gabor
  13. G

    IBM AIX debugger

    Hi, You can read the Progress corefiles easily. $DLC/bin/prostack -r $DLC/bin/_progres <corefile> Note: install bos.adt.debug package on AIX Best regards, Gabor
  14. G

    3D Colors

    Hi, Finally I could run the code successfully. Before using color-table entry you need to extend it using its num-entries property. So, the final code is: PROCEDURE GetSysColor EXTERNAL "user32.dll": DEFINE INPUT PARAMETER nDspElement AS LONG. DEFINE RETURN PARAMETER COLORREF AS LONG. END...
  15. G

    3D Colors

    Hi, It tried to run your examples but I had the following Warnings: **Unable to set attribute SET-DYNAMIC for PSEUDO-WIDGET. (4078) **Unable to set attribute SET-RGB-VALUEfor PSEUDO-WIDGET. (4078) and color was not added to color table. Our dev. environment is: XP SP2 + OpenEdge V10.0B...
  16. G

    3D Colors

    Hi Luke, That's the way we do it now, but user can change system colour (Display Properties->Appearance) and we'd like to use the same colour in our application. My idea was to use GetSysColor (which works fine) in order to determine COLOR_BTNFACE and assign it to frame's bgcolor (I could not...
  17. G

    3D Colors

    Hi, Is there any way to set frame's background color to 3D object's background color under Win32? I'd like to pick up this system value at run-time and assign it to the frame! I tried to run GetSyColor() API with COLOR_BTNFACE but it returns with zero. Best regards, Gabor
  18. G

    Browser display

    Hi, Try to use ROW-DISPLAY trigger like: on ROW-DISPLAY of mybrowse do: mycoloumn:bgcolor in browse mybrowse = <colornum>. end. Best regards, Gabor
  19. G

    click ocx, press delete and kill progress!

    Hi, This a known problem fixed in V9.1DSP6 (20030214-005). Best regards, Gabor
  20. G

    Problem getting hostname in 10.0b

    Hi Try this: PROCEDURE gethostname EXTERNAL "wsock32.dll": DEFINE INPUT-OUTPUT PARAMETER name AS MEMPTR. DEFINE INPUT PARAMETER namlen AS LONG. DEFINE RETURN PARAMETER iRet AS LONG. END. def var l-hostname as char no-undo. def var lp as memptr no-undo. def...
Top