Bind a button to a recordsource row???

  • Thread starter Thread starter Jordan
  • Start date Start date
J

Jordan

I am finding it impossible to get a unique handle on an
object that is repeated on a recordsource row.
If I use "DoCmd.GoToRecord , , acFirst" then try and get
at me.theItem to do something to it (say, set .visible =
false) it does this to ALL objects in the recordset.
Arrghhh. Ive tried using Me.Controls.Item(20).Visible =
False and this does the same thing.

How can I get a unique handle to the object JUST on the
row I am on!?
 
You cannot hide a button on only some rows of a continuous form.

Setting the Visible property affects all rows.
 
Back
Top