Hi
When I press on a button, I add the text of the button to the clipboard.
I'd then like this text to appear on one of three labels, depending on which one I click on.
Advice appreciated!
Printable View
Hi
When I press on a button, I add the text of the button to the clipboard.
I'd then like this text to appear on one of three labels, depending on which one I click on.
Advice appreciated!
If you find a resolution to your problem on your own, please share it with the class, in case anyone else has a similar problem in the future.
Sorry! Completely forgot!
Button Click event:
Clipboard.SetText(Button1.Text)
Label Click event:
If Clipboard.ContainsText Then
LabelOne.Text = Clipboard.GetText