How to get value of column from subform

  • Thread starter Thread starter Nova
  • Start date Start date
N

Nova

In my subform (datasheet) has 4 column A, B, C and D. When I double click at
any column in record, I would like to get value of the column A from that
record to show on textbox on main form. How can I write code for this?
 
On Mon, 23 Nov 2009 21:05:01 -0800, Nova

In each of the 4 double-click events write:
Me.Parent.myControl = Me.A
(of course you replace myObjectNames with yours)

-Tom.
Microsoft Access MVP
 
Back
Top