I am trying to seperate my functions from the form file.
In my function I want to modify the properties and values of the form and its elements. How should I formulate this?
In Access I could address a form in this manner but it doesn't work in .NET:
any input will be appreciated
Thank you
P:oD
In my function I want to modify the properties and values of the form and its elements. How should I formulate this?
In Access I could address a form in this manner but it doesn't work in .NET:
Code:
Form_OrderForm.Visible = false Forms!OrderForm.Visible = false Forms!OrderForm.Controls!NewData
Thank you
P:oD
Comment