Results 1 to 7 of 7

Thread: [RESOLVED] [2005] Excel Functionality.

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member NPassero's Avatar
    Join Date
    May 2007
    Location
    NJ
    Posts
    272

    Resolved [RESOLVED] [2005] Excel Functionality.

    I am working on a grid that is pretty much Excel. I am going to parse out the text box string and check for multiple things, mainly stored functions ( =, +, -, /, *, sqrt).. What is the best way to go about doing this process..

    Name:  excelfunctionality.jpg
Views: 100
Size:  42.0 KB

    And also, while i'm in the text box, would i be able to select cells and get their value? I was thinking I would have to do it like this..

    vb.net Code:
    1. If textBox.focused() then
    2.    flag = true
    3. end if
    4.  
    5. sub Grid_Click () ...
    6.    if flag = true
    7.      textbox.text += "[" & col & row & "]"
    8.      textbox.focus()
    9.    end if
    10. end sub
    Last edited by NPassero; Jul 6th, 2007 at 09:13 AM.

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