Are you intentionally pointing to a Data Direct driver page?
The 'regular' documentation at Progress Documentation has:
So it would seem you are out of luck. You could question how SQL92 compliant this really is.
Leave localhost on the first page of the dialog and click on next.
On the second page of the dialog you choose your OpenEdge Explorer connection, if you click on 'Configure...' next to that combo box you can add a config pointing to your remote OpenEdge Explorer.
Sending messages sounds like a recipe for failure since your existing prowin session is not multi-threaded.
I think at most you can let your application poll (using pstimer tick once a second or so) either:
a. the database
b. the file system
For simplicity I would go with b.
You are not showing any iterating block, here is a simple example to get you started:
define temp-table tt field ii as int.
create tt. tt.ii = 1.
create tt. tt.ii = 2.
create tt. tt.ii = 3.
ttblock:
for each tt:
if tt.ii modulo 2 = 0 then
next ttblock.
message tt.ii.
end...
Disclaimer: I've never done this myself.
You can register an application to a URI scheme:
https://stackoverflow.com/questions/32694642/registering-an-application-to-a-uri-scheme-in-windows-10
So you have no distinction between Abraham Abraham and Abraham? Or Dong Dong and Dong? Or closer to your neck of the woods, Grace Grace and Grace? See more examples on Wikipedia.
def var mp as memptr no-undo.
mp = chDocument:Range():EnhMetaFileBits.
copy-lob from mp to file 'c:\temp\preview.emf'.
Will create a file that can be opened by Windows, but it cannot be used on a Progress image widget since that does not support emf files and will throw error 2290.
You may...
Did you add a retry block too? Otherwise the AVM will not retry and just leave the block.
_main:
do on stop undo, retry:
if retry then do:
message 'retry?' view-as alert-box buttons yes-no update lretry as logical.
if not lretry then
leave _main.
end...
The PoC looks very nice!
A small UI issue with the 'Lab' tab when using Firefox (not a problem with Chrome), the record lock field overlaps the caption of the where expression.:
We have exactly one web handler, listening on /web/rest, that handles the REST API for all our entities including documentation.
https://partners.exactfinancials.nl:8443/web/rest
I would first look at getting your AdminServer online. OpenEdge Explorer often thinks my AdminServer is offline due to a "bad" shutdown. To fix:
click on configure remote AdminServers,
select the row with your AdminServer by clicking somewhere in the row but not on a hyperlink
click on Edit...
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.