|
-
Jul 6th, 2007, 09:08 AM
#1
Thread Starter
Hyperactive Member
[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..

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:
If textBox.focused() then
flag = true
end if
sub Grid_Click () ...
if flag = true
textbox.text += "[" & col & row & "]"
textbox.focus()
end if
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|