L
Luca Giannoni
Hi to everybody,
I have this problem
I attach an event to a group of control from code:
Set Frm = Fom_Test
for ii = 1 to 100
Frm.Controls("Label" & ii).OnClick = "=Event_Click()"
Next
Event_Click() is on form Form_Test
Sub Event_Click()
' code to apply to label caller
End Sub
when the event "raise" I need to know wich object (label) call the event.
Someone could help me?
thanks in advance
Luca
I have this problem
I attach an event to a group of control from code:
Set Frm = Fom_Test
for ii = 1 to 100
Frm.Controls("Label" & ii).OnClick = "=Event_Click()"
Next
Event_Click() is on form Form_Test
Sub Event_Click()
' code to apply to label caller
End Sub
when the event "raise" I need to know wich object (label) call the event.
Someone could help me?
thanks in advance
Luca