good morning pb-developers ;-)
I have a problem with writing an application
to display all windows of an external pbl in
a report.
I got already every pb window name with
***libraryPathList*** but I need further
infos about the different windows. (like
window title or even the layout...)
I try to use following example to get further
information about the windows in an EXTERNAL
pbl (EXAMPLE to get infos about "w_info"):
String libList[]
libList[1] = "C:\app.pbl"
ClassDefinition cd_windef
cd_windef = FindClassDefinition("w_info", libList)
IF IsNull(cd_windef) THEN
MessageBox("Error - w_info is not present in the present Library List!")
ELSE
MessageBox("TEST", String(cd_windef.LibraryName))
END IF
But this example doesn't find the window "w_info"
altough it is in the external pbl???
Do you have an idea?
Thanks, Sebastian
I have a problem with writing an application
to display all windows of an external pbl in
a report.
I got already every pb window name with
***libraryPathList*** but I need further
infos about the different windows. (like
window title or even the layout...)
I try to use following example to get further
information about the windows in an EXTERNAL
pbl (EXAMPLE to get infos about "w_info"):
String libList[]
libList[1] = "C:\app.pbl"
ClassDefinition cd_windef
cd_windef = FindClassDefinition("w_info", libList)
IF IsNull(cd_windef) THEN
MessageBox("Error - w_info is not present in the present Library List!")
ELSE
MessageBox("TEST", String(cd_windef.LibraryName))
END IF
But this example doesn't find the window "w_info"
altough it is in the external pbl???
Do you have an idea?
Thanks, Sebastian