I have created a class for a dbModalPanel, where i wrote my DataDictionary-Objects in the Construct_Object-Procedure of the class. This all works in running the program, but the Studio seems to have a problem with it. I cannot see all the DataDictionary-Objects in the DDO-Explorer. So this isnt a real problem for running the program, but its annoying for my normal work, that i cannot use this DDO-Explorer to fill a dbGrid for example.

Is there a way to get the Studio parsing my code? I am still using VDF 16.0.

Here is an example of those code:

Code:
Class cModalDialog is a dbModalPanel

    Procedure Construct_Object
        Forward Send Construct_Object
        
        Object oTableDD is a Table_DataDictionay
        End_Object

        Set Server to oTableDD
    End_Procedure


End_Class
Now the Object in its simplest way:
Code:
Object oDialog is a cModalDialog
    Object Table_M is a dbGrid
    End_Object
End_Object
--> Here, i cannot use the DDO-Explorer to put in some Columns. The DDO-Explorer dont show me my DD-Object.

Maybe, someone can help me