how i can create a program
Once I click on certain buttons software that will copy the text I will indicate
(like Ctrl + c)
Printable View
how i can create a program
Once I click on certain buttons software that will copy the text I will indicate
(like Ctrl + c)
Your request is a bit unclear. Are you saying that you want to be able to select text in any application and then press some key combination to have that text copied into your application? That's a bit of an educated guess but, if it's wrong, please provide a clearer description of what you want.
Umm as far as I can tell from your request, you want a button to copy and paste the indicated text?
If so, add this to your button_click event:
vb Code:
My.Computer.Clipboard.SetText(TextBox1.Text)
This will add the text in TextBox1.Text to the clipboard
Not sure whether that's what you wanted.
Up..
I understand that there's a language barrier here but your request still doesn't make sense to me. Can you try to explain more clearly, step by step, exactly what you want the user to do and what you want the app to do.