A challenge with something visual - I love the idea, must say - is that of screen real estate. Maybe it could be on its own dialog that pops up when you select a Copy menu item or button.
Something like the dialog that pops up when you click on the "all charts" button in Excel.
Make sure you are using the correct extension (there are older ones that are still in the marketplace). The one published by Riverside Software is the one. You are also going to want to be on the pre-releases - Gilles releases there fairly regularly, bug fixes, new features, etc. It's very...
When you're using the REST transport, then web handlers are not involved at all.
For REST, you will need to pass the value of header (I'm guessing) that is used for the API key as an input parameter into the procedure/method you've mapped to the operation, and then process it there.
That said...
If you want to use standard WinForms controls, take a look at some of the answers in this thread . Telerik also has one: WinForms Syntax Editor Overview - Telerik UI for WinForms
If you have installed the oemanager webapp you can see - through OE Explorer / Management or the REST API , maybe via the Swagger interface - which programs are currently memory-resident ("session stacks"), and potentially which objects (eg handles, memptrs, class-based objects) are memory...
I'd try disabling the OYel functionality in PASOE first, since that's another moving part.
You could also post an example of the messages you're zeeing in the OECC logs here.
You should be able to use it in 12.2 ... will just need to get it from Progress' GitHub page. I don't believe that it uses any of the newer ABL that's not in 12.2.
You can download the Development Server (or at least, used to be able to) which allows compilation on other platforms. That does not include the previous version tools, to the best of my recollection.
Your scrollbar is coming from the WITH phrase on the FORM statement. If you reduce it to something that fits into the window you will not see the scrollbar.
You can also use the STATUS statement to write helpful texts.
If you don't want to lose any characters, then encoding is the way to go. Percent (URL) encoding doesn't handle the higher ranges of the codepoints.
If you don't care about losing characters, you can walk through the strings character-by-character and ignore those that don't fit into 1251 (or...
There are the HTTP client classes available in 11.7. These have URL encoding available , via the OpenEdge.Net.URI class. You'll need to make sure that $dlc/gui|src|tty/netlib/OpenEdge.Net.pl is in PROPATH.
There is also a OpenEdge.Core.Util.UTF8Encoder class which will encode UTF-8. By default...
You should add a WHERE clause, similar to the below.
DEFINE VARIABLE dStartDate AS DATE NO-UNDO.
DEFINE VARIABLE dEndDate AS DATE NO-UNDO.
dStartDate = 3/1/2025.
dEndDate = 4/1/2025.
FOR EACH _aud-audit-data NO-LOCK
WHERE _aud-audit-data._audit-date-time >= dStartDate
AND...
Was going to ask if that existed. The server connect method usually gets these things before the client socket for some reason, so knowing that it's in the HTTP client typically means it's the in the other clients. YMMV, ceteris paribus, etc
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.