CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Excel

  1. #1
    Guest

    Excel

    How can I extract the data form a specific cell from an Excel97 spreedsheet into a textbox



  2. #2
    Join Date
    Apr 1999
    Posts
    4

    Re: Excel

    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




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured