If I have
Sub Globals
dim Label1 as Label
...
Then later on:
Label1.Parent = Panel2
I will get a compile error saying it doesn't know what "Parent" is.
Why? The Designer shows a Parent property in the Designer for Label1.
I want to create labels dynamically and display them on a particular panel, but I can't get by this simple example. Am I doing something wrong?
TIA
Widget
Sub Globals
dim Label1 as Label
...
Then later on:
Label1.Parent = Panel2
I will get a compile error saying it doesn't know what "Parent" is.
Why? The Designer shows a Parent property in the Designer for Label1.
I want to create labels dynamically and display them on a particular panel, but I can't get by this simple example. Am I doing something wrong?
TIA
Widget