Recent content by Osborne

  1. O

    Question How to use datagridview

    No problem, and what you may find useful is the program in this article: https://community.progress.com/s/article/How-to-bind-a-bindingsource-to-a-datagridview-with-batching If you look at the makeAttachQuery method in example_form.cls that shows a very good example of displaying only required...
  2. O

    Question How to use datagridview

    I am not sure of the actual problem, is it you want a way of hiding columns at different stages or only having required columns in the DataGridView? If hiding columns you can loop through each column and based on the criteria hide that way: DEFINE VARIABLE oDataGridViewColumn AS...
  3. O

    Resolved ClosedXML .net library | Can't view class object in Progress Developer Studio

    Although I have not tried any of these it does appear that you can generate some kind of debug logs for Progress Developer Studio:- https://community.progress.com/s/article/P173077 https://community.progress.com/s/article/How-to-enable-the-Eclipse-debug-console-for-Developer-Studio...
  4. O

    Resolved ClosedXML .net library | Can't view class object in Progress Developer Studio

    The majority of the time you just require the .NET DLL to be added to assemblies.xml and nothing else. The only times I have experienced problems is if one of the following situations existed: The DLL was blocked so had to unblock. Access was required to another DLL and that DLL was missing...
  5. O

    Answered PS Timer question time

    It has been years since I used work-tables and cannot remember if they had this problem. The following rules for work-tables are listed here - one rule is finding with EXCLUSIVE-LOCK is disregarded - and is it possible the timer is resulting in the work-table being affected by applying one of...
  6. O

    Resolved ClosedXML .net library | Can't view class object in Progress Developer Studio

    I have never used this parameter so not sure but based on this it looks to be a standard start-up parameter: https://docs.progress.com/bundle/openedge-startup-and-parameter-reference/page/NET-Common-Language-Runtime-clrnetcore.html As per the attached try setting for the relevant project.
  7. O

    Resolved ClosedXML .net library | Can't view class object in Progress Developer Studio

    Just tried to test this and I am finding the exact same in that class browser is not listing anything. I wondered if this was one of a few .NET components that Progress cannot access but it appears to not be the case...
  8. O

    Problem with etime in smtpmail.p

    This is a coincidence as we have just encountered a problem in the "WriteData" procedure in smtpmail where the email server seemed to temporary glitch or connection was lost whilst a write was taking place which seemed to cause the whole lot getting stuck in a loop. Added the parts highlighted...
  9. O

    PASOE Configuration

    As Tom points out there is "if you are using PASOE, change parameters X, Y, and Z like so" guidance and different factors come into play. Although likely to be a bit old now this may provide a bit of useful information...
  10. O

    Question How to use datagridview

    Converting an AppBuilder window into a .NET window is pretty straightforward as outlined here: https://community.progress.com/s/article/P145112 Other options: https://community.progress.com/s/article/000033191 https://community.progress.com/s/article/P190039 I have not worked with a .NET...
  11. O

    Question Performance question on a tool library

    I am not sure, but I think the workings in Kb188557 do not work with static classes. One option to try/fix is to have your class as a singleton class instead and doing that you should find you can pickup any modifications without having to restart the whole session...
  12. O

    Question How to use java classes in 4gl code?

    It may not possible in Progress as indicated here: https://community.progress.com/s/question/0D54Q00008gdkmwSAA/has-anyone-successfully-used-open-xml-sdk-from-abl
  13. O

    Question How to use java classes in 4gl code?

    I have never used the DocumentFormat classes so if a problem with these do not know the answer, but if it is the case of your program not seeing the dll then hopefully a bit of information that may help. For deployment, if only running compiled programs then you do not actually require access...
  14. O

    Question Change forecolor of Combo-box

    Sorry, unfortunately not. I was hoping that could have been the solution but seems you have tried that and do not know of any other option.
  15. O

    Question Change forecolor of Combo-box

    There is the FGCOLOR code setting but that only affects the list and not the actual value/screen value: DEFINE VARIABLE COMBO-BOX-1 AS CHARACTER FORMAT "X(256)":U LABEL "Combo 1" VIEW-AS COMBO-BOX INNER-LINES 5 LIST-ITEMS "Item 1","Item 2","Item 3","Item 4","Item 5"...
Back
Top