C Chmava Member Licensed User Longtime User Sep 29, 2012 #1 Hi, How do i combine 2 variable and/or text together? Example label1.Text = "Count "+counter1 or label1.Text = "Count ".counter1 i have search google, and even the search on the top right of the forum, but could not find a result, nor a tutorial that explain this. Thank You.
Hi, How do i combine 2 variable and/or text together? Example label1.Text = "Count "+counter1 or label1.Text = "Count ".counter1 i have search google, and even the search on the top right of the forum, but could not find a result, nor a tutorial that explain this. Thank You.
klaus Expert Licensed User Longtime User Sep 29, 2012 #2 I'm not sure I've understood what you want. But try: label1.Text = "Count " & counter1 Best regards. Last edited: Oct 1, 2012 Upvote 0
C Chmava Member Licensed User Longtime User Oct 1, 2012 #3 klaus said: I'm not sure I'v understoud what you want. But try: label1.Text = "Count " & counter1 Best regards. Click to expand... Thank you! That work! Upvote 0
klaus said: I'm not sure I'v understoud what you want. But try: label1.Text = "Count " & counter1 Best regards. Click to expand... Thank you! That work!