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

Double Clicking a 2 dimensional array text box?

Status
Not open for further replies.

binky

Programmer
Jan 25, 2001
183
CA
I have figured out how to dynamically create a grid of text boxes dependant on number of records in a table. Now that I have my grid:
txtName(3,3)
I need to be able to program a double click event. I have figured out the double click event of a single dimensional array that I create the same way (don't exist at design time, coded to appear at run time), but I can't find anything referring to a 2 dimensional array.
I have tried:
txtName_DblClick(Index as Integer, Index2 as Integer)
without any luck.

Anyone with some ideas would be greatly appreciated.

Thanks in advance,
K
 
You don't have 2-Dim control arrays. You will need to map you single dim physical control array to a 2 dim logical control array. However, a better option for what you are doing is a grid control. - Jeff Marler B-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top