Search results

  1. G

    Question Implementing Session Timeout In Gui

    Yea, tried that as well and seems to be not working. The closest solution I made was to change it to below code. ON 'ANY-PRINTABLE':U, 'CHOOSE':U,'ENTRY':U,'VALUE-CHANGED':u ANYWHERE DO: ETIME(TRUE). END. For those still using OpenEdge GUI, "ANY-KEY" will also have impact on when you...
  2. G

    Question Implementing Session Timeout In Gui

    Hi All, I was looking for was to implement session timeout in GUI and followed the link and its working but have side effects where all the click events (like buttons) needs to be double clicked before it executes action. Progress KB - How to programmatically timeout an ABL session? Checking...
  3. G

    Question Setting Up Rest Webserver Adapter

    Hi All, Can anybody point me to document where I can find info on setting up Rest WebServer? Currently we are using SOAP in getting data. My OE version is 11.6 Regards, gnome
  4. G

    Popup Windows

    Try reading on "publish - subscribe" keywords. You can use such keywords to execute a procedure in a called procedure/window and also: the called procedure can execute an internal procedure of the main proc/window.
  5. G

    Changing font on runtime

    Sorry for not specifying my issue. I am trying to change the loaded .ini configurations during runtime, for example changing the list of fonts available. Thanks.
  6. G

    Changing font on runtime

    Is there a way of changing the font during runtime? I am using Progress 9.1D GUI in Windows.
  7. G

    Reading the contents of a cell in a .Net DataGridView

    Hi, You can try to type the name of the grid and putting a period(.) should give you an intellisense of everything you need.
  8. G

    Using Deskspace with progress

    I dont know where to put this question: Anyone have used deskspace with progress? Progress tends to show to all workspaces.
  9. G

    Creating an Index for Fast Query (Confused)

    Ok, it makes sense to me now. Thanks to all of you guys. Thanks for pointing me to this link rzr: http://www.fast4gl.com/downloads/mon...selection.html
  10. G

    Creating an Index for Fast Query (Confused)

    That's weird cause I have a different result. Anyhow, the performance of query should differ I think because I believe if this is the case, I could make one index for a table and create an index with all fields so that I may dont have to worry. C:\tmp\sportsdb\src\checkindex.p...
  11. G

    Creating an Index for Fast Query (Confused)

    Hi, I am confused with my superior how he understands Progress DB Index. How I understand the logic of creating indexes is something like these. Table: Person Field1: FirstName Field2: LastName Index: NameIndex Index Table Name Person Fields Firstname,Lastname,Age Index NameIndex...
  12. G

    progress in ipad

    If you really into doing this, you need to create a webservice for your progress backend. Invoking the webservice will return an xml structured response. This is how we make different platforms talk to each other right?
  13. G

    Changing Progress connection to MS SQL

    You should also take note that you can fetch a recordset from SQL Server (any version) directly using Progress GUI using Visual Basic native way of fetching data. If that is the case, you should try to look into the code.
  14. G

    PDF Print

    I suggest you make use of PDFInclude. Search it.
  15. G

    threshold for block usage

    Thank you cj_brandt and Tom, this is a eye-opening for me, I should have researched more from the start.
  16. G

    threshold for block usage

    Ok I have it now.. I am using Type I Area. Any Idea what happened here? thanks
  17. G

    threshold for block usage

    Thanks for Quick Reply, Blocksize is 8192 having 64 Records/Block The BLOB is in dedicated Schema, separated from other data/indexes. I have really no Idea about the difference of Type 1 and Type 2 Schema. Hope you can guide me on this.
  18. G

    threshold for block usage

    Hi, My database is supposed to handle blob with volume of records of about 500,000 rows. Recently, I bumped into these problem when I hit 250+ GB Database File Size: WARNING: Area: 9 extent D:\ImgArchives\db\IMGDB_9.d1 has reached the 90 percent threshold for block usage - current block...
  19. G

    autofit column in excel sheet

    i beleive you can specify range to autofit.
  20. G

    how to upload text file

    DEFINE VAR mFile AS memptr NO-UNDO. DEFINE VAR cfile_dest AS memptr NO-UNDO. ASSIGN mFile = get-binary-data("fileattached") cfile_dest = get-config("fileUploadDirectory":U) + '\' + entry(num-entries(cfile),cfile,'\') IF...
Top