Hi all,
Iam afraid I misunderstood something regarding 'Sender' !
Can someone tells what's wrong with this :
I am trying to locate the selected cell
At the "ToastMessageShow(l.tag,False)" line I get the error :
"Object should first be initialized (label)"
So I have tried this :
... Same error.
:BangHead:
Thks,
WW
Iam afraid I misunderstood something regarding 'Sender' !
Can someone tells what's wrong with this :
I am trying to locate the selected cell
B4X:
Sub Cell_Cpte_click
Dim l As Label
l = Sender
ToastMessageShow(l.tag,False)
End Sub
At the "ToastMessageShow(l.tag,False)" line I get the error :
"Object should first be initialized (label)"
So I have tried this :
B4X:
Sub Cell_Cpte_click
Dim l As Label
l.initialize("")
l = Sender
ToastMessageShow(l.tag,False)
End Sub
... Same error.
:BangHead:
Thks,
WW