hello,
dblClick fires both subs.
i need it to do something else then click.
dblClick fires both subs.
i need it to do something else then click.
B4X:
Sub btn_MouseClicked (EventData As MouseEvent)
If EventData.ClickCount=1 Then
subA
Else if EventData.ClickCount=2 Then
subB
End If
End Sub
Sub subA
Log("in subA")
End Sub
Sub subB
Log("in subB")
End Sub[/CODE
i know i can add a timer to wait for another click (or not)... but maybe i'm missing something here....
Thank you