DropBox Selection Visual Basic

R

Roger

I need to be able to select the column and the Row using a
dropbox in visual basic.

ie: combo993.column(2) is great but I need
combo993,column(2,20) this will work as is but I need
to capture the row the user selects via the cursor on the
form. something like
combo993(3, combo993.selection)
or combo993(3, combo993.selection :value)

any ideas?
I can find no documentation..
Roger
 
A

Albert D. Kallal

The format you can use is:

Me.Combo14.Column(Collum index, [Row index])

Note how the row is optional.

So, you can use:

me.Combo993.Column(2)

So, by leaving out the 2nd parm, it defaults to the currently selected row.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top