Detect If Running In PowerBuilder Or Executable
1 2 3 4 5 6 |
//Check If Running By PowerBuilder Using GetApplication() If Handle(GetApplication()) = 0 Then MessageBox("Infor", "Running in PB environment") Else MessageBox("Infor", "Running in standalone executable") End If |
Good luck!
Subscribe
Login
0 Comments