AlfredSpecial
Programmer
What i am trying to do is copy text into various textboxes in a VB6 application.
example:
I copy data in an excel spreadsheet say from A1 to A50 to my clipboard.I now want a command button in my VB6 application that will paste this data into the following text boxes text1 to text50.
The code below will just put all of my clipboard into Text1.
Text1.SelText = Clipboard.GetText()
Any help appreciated
example:
I copy data in an excel spreadsheet say from A1 to A50 to my clipboard.I now want a command button in my VB6 application that will paste this data into the following text boxes text1 to text50.
The code below will just put all of my clipboard into Text1.
Text1.SelText = Clipboard.GetText()
Any help appreciated