imgsimonebiliato Well-Known Member Licensed User Longtime User Jun 18, 2013 #1 Hello, I create dinamically 20 buttons, and when I click on one, I need to know its caption, so I use sender. But using this code: B4X: Sub bt_mac_click Dim bt As Button bt = Sender lb_mac.Text = bt.Text Log(sender) = android.widget.Button@4133cda8 the result is always the same, that is the caption of the last button created. I'm sure about 2 weeks ago, the code worked, and now not. How can I solve? :BangHead: Last edited: Jun 18, 2013
Hello, I create dinamically 20 buttons, and when I click on one, I need to know its caption, so I use sender. But using this code: B4X: Sub bt_mac_click Dim bt As Button bt = Sender lb_mac.Text = bt.Text Log(sender) = android.widget.Button@4133cda8 the result is always the same, that is the caption of the last button created. I'm sure about 2 weeks ago, the code worked, and now not. How can I solve? :BangHead:
thedesolatesoul Expert Licensed User Longtime User Jun 18, 2013 #2 Can you post the code where you create the buttons? Most probably you didnt Dim them inside the loop. Upvote 0
Can you post the code where you create the buttons? Most probably you didnt Dim them inside the loop.
imgsimonebiliato Well-Known Member Licensed User Longtime User Jun 18, 2013 #3 thedesolatesoul said: Can you post the code where you create the buttons? Most probably you didnt Dim them inside the loop. Click to expand... You're right thedesolatesoul!! I inserted the "dim" inside the loop, and now it works! Many thanks!!! :icon_clap::icon_clap::sign0142: Upvote 0
thedesolatesoul said: Can you post the code where you create the buttons? Most probably you didnt Dim them inside the loop. Click to expand... You're right thedesolatesoul!! I inserted the "dim" inside the loop, and now it works! Many thanks!!! :icon_clap::icon_clap::sign0142:
Erel B4X founder Staff member Licensed User Longtime User Jun 18, 2013 #4 See the new common mistakes video: http://www.b4x.com/forum/basic4android-getting-started-tutorials/30336-video-common-mistakes.html Upvote 0
See the new common mistakes video: http://www.b4x.com/forum/basic4android-getting-started-tutorials/30336-video-common-mistakes.html