> Hi,
>
> Here I go again with a new thread connected with the hottest aspect of my private life, at this time - Public variables!
Sounds interesting :-)
> My question: A form calls a View which powers the form. The View requires a variable parameter. How do I send this variable to the View from the form's Load event, without too much of coding, (I'm hoping!) .
You do not need a public parameter variable for that - just set the view's property .NoDatOnLoad=.T. (when you have the view added to the form.DataEnvironment) or "USE theView NoData" (when you open it programmatically in form.Load()).
Then, later in form.Init() for example, you can create a Local view parameter variable and Requery("yourView").
hth
-Stefan