Check If An Object Definition Exists Of Libary List In PowerBuilder
1 2 3 4 5 6 7 8 9 10 |
ClassDefinition cd_windef String ls_libraries[ ] ls_libraries[1] = "c:\libdir\windows.pbl" ls_libraries[2] = "c:\libdir1\windows.pbl" ls_libraries[3] = "c:\libdir2\ancestor.pbl" cd_windef = FindClassDefinition("w_genapp_frame", ls_libraries) If IsNull(cd_windef) Then MessageBox("Error", w_genapp_frame + " is not present in the present Library List!") End If |
Good Luck!
Subscribe
Login
0 Comments
Oldest