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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Help Using MSHFlexGrid

Status
Not open for further replies.

FrankD

Programmer
Aug 13, 1999
8
0
0
US
Please help. I am trying to connect to an access database, and list the table in the flexgrid. Actually that part works fine. <br>
<br>
The problem is, in the Access database, the column "Shipped" is supposed to be a checkbox, and when the flexgrid displays it, it only shows True/False. Is there ANY way at all to make it show the checkbox?<br>
<br>
Second, I have the user able to select by row. How can I tell which row was selected, and bring up another window with detailed info?<br>
<br>
Many thanks in advance,<br>
Frank<br>
<br>
deluca@nls.net
 
not sure how to show the check box. I use the words active/inactive or checked/unchecked. <br>
<br>
When user clicks on the grid the row and column property are set to that box.<br>
<br>
try this to see:<br>
<br>
private sub flxGrid_Click()<br>
<br>
msgbox "Row &gt; " & flxGrid.row & " Column &gt; " & flxGrid.col<br>
<br>
end sub<br>
<br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top