How can I extract the data form a specific cell from an Excel97 spreedsheet into a textbox
Printable View
How can I extract the data form a specific cell from an Excel97 spreedsheet into a textbox
Hi.
If your textbox is named textbox1, and your cell to retreive is B1 it will look like this example :
textbox1.text=range("B1")
or you can do like :
textbox1.text=cells(1,2)
Hope this helps.
InB