Wish Overlap Instruction Sets Supported

Theera

Expert
Licensed User
Longtime User
I can't explain in English, so I do the code as belows.

B4X:
Private Sub Button1_Click
Private Sub Button2_Click
Private Sub Button3_Click
    xui.MsgboxAsync("Have a niceday" , "B4X")
End Sub
 

emexes

Expert
Licensed User
Longtime User
Set the event handler for Button2 and Button3 to use (call) the Button1 event handler:

(I'm having a mental blank on how to work out which of the three buttons called the event handler, but I'm looking into it) refer next post

1734857524963.png
 
Last edited:

aeric

Expert
Licensed User
Longtime User
Set the event handler for Button2 and Button3 to use (call) the Button1 event handler:

(I'm having a mental blank on how to work out which of the three buttons called the event handler, but I'm looking into it) refer next post

View attachment 159725
You can put extra information in Tag property.
 
Top