Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can get information in a mshflexgrid

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
vb6....

i have 3 textbox and 1 combobox that the user have to fill , and i want to get this information i a mshflexgrid control,....

how can get each text box and the combo box for each row in the grid....
i need get like 20 row for entry...

how can do that....

how can put textbox and combobox in the msflexgris,
and how can move over the rows captured....


thank´s for any help.... or idea...
 
You can put data into the Hflexgrid in different ways.

set the column and the row and then fill the text,

MSHFlexGrid1.Row = 1
MSHFlexGrid1.Col = 1
MSHFlexGrid1.Text = text1.Text

or

MSHFlexGrid1.TextMatrix(Row, Column) = text1.Text
 
ok,

but, how can prompt this text box and combobox inside de mshflexgrid, like the grid of msaccess or any grid from thirds....
 
You cannot directly edit the MSflexgrid or the mshflexgrid. You8 will need to add some code to create a floating text box that makes the user think that they are directly editing the grid.

Do a search for the MSFlexGrid on this site and you should find the information that you are looking for. Thanks and Good Luck!

zemp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top