Hello,
I am struggling with an apparently simple process.
Need to pass a String from one application in Powerbuilder to another Application in Powerbuilder.
As I'm doing:
APP1: "Send (gl_handle, 1024, 0, 'Hello World')"
APP2: event pbm_custom01
string ls_info = String (lparam, "address")
But the variable ls_info is coming empty. And when u do a test with the same "Send" from APP2 to APP2 (same application) is working. Only when I try to send a String through different applications it comes empty. What am I doing wrong?
Thanks in advance.