How to pass a FormName as an argument to a Function ?
This is how I used in my VB6 version. How to do the same in VB.net ?
This is how I used in my VB6 version. How to do the same in VB.net ?
HTML Code:
Public Sub MyEnabled(pStatus As Boolean, FName As Form)
Dim Item As Control
For Each Item In FName
///
Next
End Sub