by Joseph O'Dwyer >> Mon, 13 Sep 1999 21:07:19 GMT
I have designed a property page form to be used in the painter and I would like the form to populate a listbox with a list of the classes in the schema to which the form is being added.
When testing the form I was using the "currentSchema" system variable, however once in the painter this is not the schema that I require.
I then tried to use the follow code to determine the schema to which the form belongs;
my_Control := aControl;
lstr_ClassName := my_Control.form.name;
lClass := rootSchema.findClassInSubschema(lstr_ClassName);
lProperty := lClass.getProperty(my_Control.getName()); my_Schema := lProperty.type.schema;
However this code does not work because the findClassInSubschema method returns a null class reference. Also I am sure there must be an easier and cleaner way of attempting to do this but I can not seem to find it.
What I need to know is how to find the schema to which the form being added belongs in a property page form invoked from within the painter.
ThankYou in Advance for your help
Joseph O'Dwyer