A
Andreas Wöckl
HI Group!
I have to programmatically create a user input form with various Checkbox
and RadioButton lists - Beside every List I have to place an image button
that is able to reset the checkboxlists and radiobutton lists.
if i declare a variable with
private withEvents img as ImageButton
and have a sub with..
Protected Sub Click1(ByVal sender As Object, ByVal e As
System.Web.UI.ImageClickEventArgs) _
Handles img.Click
msgbox("test")
End Sub
My Code for examle iterates 2 times but only one event is captured. So how
can I assure that every event of my buttons (could be 20 or more) is
captured. I would need to reset the value of specific controls with that
code!
Many thanks in advance!
best regards
andy
I have to programmatically create a user input form with various Checkbox
and RadioButton lists - Beside every List I have to place an image button
that is able to reset the checkboxlists and radiobutton lists.
if i declare a variable with
private withEvents img as ImageButton
and have a sub with..
Protected Sub Click1(ByVal sender As Object, ByVal e As
System.Web.UI.ImageClickEventArgs) _
Handles img.Click
msgbox("test")
End Sub
My Code for examle iterates 2 times but only one event is captured. So how
can I assure that every event of my buttons (could be 20 or more) is
captured. I would need to reset the value of specific controls with that
code!
Many thanks in advance!
best regards
andy