PDA

Click to See Complete Forum and Search --> : VB - Write (directly) to an MSFlexGrid


MartinLiss
Feb 18th, 2003, 12:58 PM
It is commonly believed that you can't write to an MSFlexGrid, or that you need to use a "floating" textbox. The attached project show how to do it without using a textbox.

Usage: Create a project for the form, run it, and type into the grid.

jhermiz
Jun 22nd, 2004, 11:17 AM
Originally posted by MartinLiss
It is commonly believed that you can't write to an MSFlexGrid, or that you need to use a "floating" textbox. The attached project show how to do it without using a textbox.

Usage: Create a project for the form, run it, and type into the grid.

Martin...

I had changed some code in my application...and now when I enter text into the floating text box I immediately get:

Subscript out of range error ??

Can you tell me why ?

MartinLiss
Jun 22nd, 2004, 11:19 AM
Hard to tell from this distance:) Post your project and when I get a chance I'll take a look.

jhermiz
Jun 22nd, 2004, 11:21 AM
Originally posted by MartinLiss
Hard to tell from this distance:) Post your project and when I get a chance I'll take a look.


Err I cannot post it...it is huge and connected to a sql database.
Can you vnc in ?

Do you have www.tightvnc.com ? I'll let you shadow me ??

Thanks,
Jon

MartinLiss
Jun 22nd, 2004, 11:27 AM
No, sorry, I don't have that app. Give me some time and I'll try to make some educated guesses as to what might be going on. In the meantime have you tried setting a breakpoint and looking at the row/column,etc variables at the time of the error?

jhermiz
Jun 22nd, 2004, 11:28 AM
Originally posted by MartinLiss
No, sorry, I don't have that app. Give me some time and I'll try to make some educated guesses as to what might be going on. In the meantime have you tried setting a breakpoint and looking at the row/column,etc variables at the time of the error?
Nevermind I got it..stupid column number cause I had deleted a column and forgot to reindex :blush:

Shanks,

You should still get tightvnc..its great for shadowing

NotLKH
Apr 6th, 2005, 08:27 PM
Just saw this thread.

Nice, Thanks Martin!

I've always used the cheap and easy input box popup method, but now this is #1!

-Lou

vbPoet
Apr 10th, 2005, 10:04 PM
but marty uncle
i m getting error
on
MSFLEXGRID1.highlight ....?
what is this ;)

manavo11
Apr 10th, 2005, 10:18 PM
but marty uncle
i m getting error
on
MSFLEXGRID1.highlight ....?
what is this ;)

Have you added the reference to the component?

MartinLiss
Apr 10th, 2005, 10:54 PM
And what error do you get?

jorgegc
Jun 4th, 2005, 09:45 PM
Hi, is possible do same in vb .net ? (whit the datagrid )

Thanks from Mexico :wave:

MartinLiss
Jun 4th, 2005, 11:00 PM
Hi, is possible do same in vb .net ? (whit the datagrid )

Thanks from Mexico :wave:Sorry but I don't know. You should ask in the VB.Net forum.

MarkVB6
Jul 12th, 2005, 10:55 AM
When I opened the form, it made the control MsFlexGrid1 a picturebox. Fix by deleting this control, clicking on "components" in "project" (CTRL-T) and selecting the Microsoft FlexGrid Control 6.0. Add the yellow icon thing to your form and call it MsFlexGrid1.

This is a way of inserting data, but it obviously has its tradeoffs. No copy/cut/paste to clipboard, no selection, no delete key. But it's good for basic input where needed. Cleaner but with less freedom than a textbox.

JonnyPoet
Jan 21st, 2006, 01:47 PM
Hi !
In the first view I really was astonished how easy that works. But testing a bit more I'm sorry to say, this is neat, but cannot be used in any professional solution. Because
a) No textcursor in the field during typing, this is the main problem here and because of that
b) no normal use of arrowkeys (left, right)
c) no insert mode to be seen by switching Textcursors view
d) even if you add some codes you will never be able to do what a normal textbox does.
So IMHO it will stay what it is: A very intersting code example, no less, no more :wave:

manavo11
Jan 21st, 2006, 02:12 PM
Hi !
In the first view I really was astonished how easy that works. But testing a bit more I'm sorry to say, this is neat, but cannot be used in any professional solution. Because
a) No textcursor in the field during typing, this is the main problem here and because of that
b) no normal use of arrowkeys (left, right)
c) no insert mode to be seen by switching Textcursors view
d) even if you add some codes you will never be able to do what a normal textbox does.
So IMHO it will stay what it is: A very intersting code example, no less, no more :wave:

Very simple but could be expanded to fit your needs. As an idea, look at this (http://www.vbforums.com/showthread.php?t=300803) thread/code where TheVader has created a very nice example for LabelEdit-ing subitems in a listview :)

D43x
Jan 28th, 2006, 08:37 AM
Which grid would you recommend for both printing and editing? Using vb6.

And considering the title of this thread is it possible to write "indirectly" to an MS FlexGrid? (Or MSH FlexGrid).

MartinLiss
Jan 28th, 2006, 10:55 AM
Which grid would you recommend for both printing and editing? Using vb6.

And considering the title of this thread is it possible to write "indirectly" to an MS FlexGrid? (Or MSH FlexGrid).I don't really have a recommendation and it probably doesn't make much difference. Also I don't know what you mean by "indirectly" but it should probably be discussed in the Classic VB forum rather than here.

D43x
Jan 29th, 2006, 09:56 PM
Well it makes a difference when it seems by default an MSFlexGrid is read only, and you can't actually place the cursor in a cell !