D
Dean Slindee
I am getting an error message that "e" in the second statement below is
"private", and therefore in error.
Guess I don't understand how a public event can have private eventargs?
Calling procedure in frmMain:
Friend frmAdminEthnic As New frmAdminEthnic
Call frmAdminEthnic.btnClear_ButtonPressed(Me, e)
Procedure being called in called form (frmAdminEthnic):
Public Sub btnClear_ButtonPressed(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnClear.ButtonPressed
Call FormDataFieldsArrayListClear(Me, ctlArray)
Call FormStatusBarPaint(Me, FormMode.Edit, StatusMode.Clear)
Call FormMainStatusBarPaint(FormMode.Edit, StatusMode.Clear)
txtEthnicID.Focus()
End Sub
Thanks,
Dean Slindee
"private", and therefore in error.
Guess I don't understand how a public event can have private eventargs?
Calling procedure in frmMain:
Friend frmAdminEthnic As New frmAdminEthnic
Call frmAdminEthnic.btnClear_ButtonPressed(Me, e)
Procedure being called in called form (frmAdminEthnic):
Public Sub btnClear_ButtonPressed(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnClear.ButtonPressed
Call FormDataFieldsArrayListClear(Me, ctlArray)
Call FormStatusBarPaint(Me, FormMode.Edit, StatusMode.Clear)
Call FormMainStatusBarPaint(FormMode.Edit, StatusMode.Clear)
txtEthnicID.Focus()
End Sub
Thanks,
Dean Slindee