I have a WinForm which I need to handle to either Hide or Close the form based on a parameter passed to the form. I have the following code as part of my LaunchForm method:
loForm =
My question is where in the called form class I enter the code to handle the parameter?
I tried this code without sucess:
InitializeComponent()
_HideThisform = tHideForm
Can anybody show me a sample code to handle a form's parameter?
Thanks!