Search results

  1. O

    Tutorial for .net GUI in openedge progress

    Yes, unfortunately, of all the links I listed here - Seeking great OpenEdge GUI development tutorial - only this is still valid: https://community.progress.com/s/question/0D54Q00007tFpLaSAK/openedge-ultra-controls-for-net-illustrative-samples To start you off, have a read of the GUI for .NET...
  2. O

    Question Example ABL .NET TreeView

    For a quick example connect to the Sports2000 database and run something similar to this: /* runorderstreeview.p */ DEFINE VARIABLE oOrderstreeview AS orderstreeview NO-UNDO. oOrderstreeview = NEW orderstreeview(). oOrderstreeview:Show(). WAIT-FOR...
  3. O

    Some questions about Developer Studio

    For (2), as Rob outlines, the AppBuilder functionality is integrated into PDSOE and the good news is this allows you to create character based UI's using either of the TTY options:
  4. O

    Changes being made to the Proedit section in ini file

    Tom, you are correct about LOAD and SAVE but have been assured no-one is doing that. Peter, thanks for the link, and trying some things can confirm that the procedure editor can set this if you do not specify a program to run. If the shortcut is similar to this it does not appear to change the...
  5. O

    Changes being made to the Proedit section in ini file

    In the past few weeks a shared Windows ini file on the server has twice had changes to the Proedit section, and although the changes have not affected anything I would like to know who or what is causing the changes. Whatever is happening is changing the settings from: [Proedit]...
  6. O

    Add new objects online

    As Cringer posts, it should be painless, and if the index is for a new table that is being added then it can be active in the DF, and can all be applied online when you select the 'add new objects online' option.
  7. O

    Question How to increase decimal limit?

    I have previously had this exact problem and the change that Stefan posted appears to be the only option. If you change to this it works: define variable dcQty as decimal DECIMALS 6 format "->>,>>>,>>9.9<<<<<<<<" Label "Qty" no-undo. As Stefan says it is a balancing act and maybe not ideal to...
  8. O

    Querying LDAP Passwords

    As Cecil posted it is a startup parameter so will not work putting in an ini file. Something to note, if the other users are only running compiled programs then they do not actually require access to assemblies.xml. When you run from r-code, you don't need the assemblies.xml file because the...
  9. O

    Question How to send CTRL-V to a .NET control

    Ah right, that does not work. You can do something like this with SendKeys but unfortunately do not know the correct text for CTRL-V: System.Windows.Forms.SendKeys:Send("e"). System.Windows.Forms.SendKeys:Send("~{END}").
  10. O

    Question How to send CTRL-V to a .NET control

    I am not sure if this is the solution but does something like this work?: System.Windows.Forms.SendKeys:Send(CAST(Progress.Util.EnumHelper:Or(System.Windows.Forms.Keys:Control, System.Windows.Forms.Keys:V)).
  11. O

    Question Can we add custom color(with RGB value) to background of widgets in progress 4gl

    Does this help?: https://community.progress.com/s/article/howtousespecificRGBcolorvaluesforwidget
  12. O

    Question PDSOE Debug settings

    Cannot help with what you are missing for debugging, but for more structured documentation have you looked at devstudio.pdf? If you do not have this it should be available from here: https://docs.progress.com/category/openedge-archives#OpenEdge11 Note: The 11.6 version (October 2015) has 1100...
  13. O

    Question Using a query to update values.

    I am not quite sure, but I think it is just a matter of reading all the records, updating the fields then invoking a browse refresh. A very old code example but think this is on the lines of what you are trying to achieve - just adapt to assign from a column value instead of a frame field...
  14. O

    Treeview OCX - Set Focus

    How are you hosting the TreeView OCX, is it in a CONTROL-FRAME which was created something similar to?: DEFINE VARIABLE CtrlFrame AS WIDGET-HANDLE NO-UNDO. CREATE CONTROL-FRAME CtrlFrame ASSIGN FRAME = FRAME F1:HANDLE ROW = 1.24 COLUMN = 4...
  15. O

    transform graph curve

    Fair enough, and unfortunately not something I can help with but hopefully others can.
  16. O

    transform graph curve

    One option is to use Excel and COM-HANDLES, and attached is a procedure that will create a chart from the Sports2000 database. It is a very old procedure but it does seem to work fine with the latest versions of Excel.
  17. O

    CRUD Using Smart Obects in Openedge

    I do not use SmartObjects so cannot help with an example but have a look in the PDFs listed here to see if they have any examples: https://community.progress.com/s/article/How-to-start-a-GUI-in-ADM2-that-waits-for-user-interaction Although old, there may be some examples here - as per the...
  18. O

    Question How to stop a direct print job to an offline printer hanging forever

    If you are on a later version of Progress you may be able to use .NET to solve: https://community.progress.com/s/article/How-to-get-printer-status-with-ABL-on-Windows
  19. O

    Question [SOLVED] Dbtool - does the 2. SQL Width Scan w/Fix Option only fix the tables with errors?

    As Rob says, there could potentially be many different answers. This gives a bit of information about DBTool padding that may help: https://community.progress.com/s/article/How-dbtool-padding-affects-the-new-SQL-WIDTH-value Also this for extent fields padding...
  20. O

    Question [SOLVED] Dbtool - does the 2. SQL Width Scan w/Fix Option only fix the tables with errors?

    To only apply for table 61 you need to enter 61 not all for <table> It has been quite a few years since I used DBTool to adjust padding but the last time I did I recorded the screen and if any help have listed: DATABASE TOOLS MENU - 10.2B...
Back
Top