I am experiencing issues with pointer persistence with the native PowerBuilder SetPointer function and the external windows function call:
//...
//... create hourglass.
//...
//... create hourglass.
//...
ulong ll_handle ;
if ab_mode then
ll_handle = handle(this) ;
ii_return = setcapture(ll_handle) ;
setpointer(hourglass!) ;
else ;
releasecapture() ;
end if ;
ll_handle = handle(this) ;
ii_return = setcapture(ll_handle) ;
setpointer(hourglass!) ;
else ;
releasecapture() ;
end if ;
Has anyone else experienced this? If so, does anyone have any recommendations? Thank you.
Sincerely,
Richard
FYI ... Yes, all Windows API calls *are* case sensitive.
Regards ... Chris