When I use the debugger on my trial version of 2017 R3 Powerbuilder and try to look at instance variables the system hangs and I need to kill the process.
- Mark Winsor
- PowerBuilder
- Friday, 21 September 2018 15:03 PM UTC
- Page :
- 1
There are no replies made for this question yet.
However, you are not allowed to reply to this question.
However, you are not allowed to reply to this question.
if not DirectoryExists(CatalogImageDir) then
CreateDirectory(CatalogImageDir)
end if
if SharedObjectRegister('uo_cache','HICacheMgr') Success! then
MessageBox("Error!", "Error registering shared object", StopSign!)
end if
if SharedObjectGet('HICacheMgr',CacheMgr) Success! then
MessageBox("Error!", "Error getting shared object", StopSign!)
end if
CacheIface = Create uo_cache_iface
CacheIface.of_registergroup(groupno)
CacheMgr.of_set_object(CacheIface)
CacheMgr.POST of_get_images()
dscat = Create n_datastore
Here are a few few things that I would try ...
1) optimize all your PBL's
2) Perform a Full Build on your App
3) Restart the IDE and try the debugging session again.
Regards .. .Chris