View Full Version : Referencing control on Tab Control


Stew
11-03-2000, 12:03 PM
I thought I could reference a control on a tab control as if I was referencing it on the actual form:

Me.hiredate = Now()

It doesn't work for some reason. Before I placed it on the tab control there was no problem. Could someone let me know how to reference it properly or give an explanation.

Robert Dunstan
11-06-2000, 07:38 AM
Assuming you were trying to place the current date in your control, you almost were there.

Try using this

Me.Hiredate.Value = Now()

HTH
Rob