Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using DoDefault() in INIT of child form
Message
From
08/07/2010 13:11:38
 
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP1
Miscellaneous
Thread ID:
01471889
Message ID:
01471892
Views:
37
>Hi,
>
>I have a form bases on some parent form. The parent form receives three parameters (one of them is an array). I need to change the Caption of the child form. So I am trying to set this new Caption in the INIT method of the child form. But I am getting errors. Here is what I tried:
>
>1. error
>
>dedefault()
>this.caption = "New Caption"
>
>
>2. error
>
>LPARAMETER aParam1, tParam2, tParam3
>DODEFAULT()
>thisform.Caption = "New Caption"
>
>
>What am I missing?

The second approach is the right one, but you need to pass the parameters in the DODEFAULT()
LPARAMETER aParam1, tParam2, tParam3
DODEFAULT(aParam1, tParam2, tParam3)
thisform.Caption = "New Caption"
Tamar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform