P
poorboy13
Hello,
I am having an issue where I need to have a field on a form populated by the
'Date' Function by a click on a command button.
However I am getting an error message that Access can not find the "Date"
field.
I'm sure this means I've named some object somewhere in my db "Date" but I
can't find it.
Is there some way of doing a search or listing all the objects by name so I
can find the offending piece and rename it?
In case you want to make sure my code is correct....
Private Sub Command10_Click()
BODDate.Locked = False
BeginTime.Locked = False
BODDate = Date
BeginTime = Now()
BeginTime.Locked = True
BODDate.Locked = True
Present = -1
End Sub
Any help would be appreciated.
Thanks,
poorboy13
I am having an issue where I need to have a field on a form populated by the
'Date' Function by a click on a command button.
However I am getting an error message that Access can not find the "Date"
field.
I'm sure this means I've named some object somewhere in my db "Date" but I
can't find it.
Is there some way of doing a search or listing all the objects by name so I
can find the offending piece and rename it?
In case you want to make sure my code is correct....
Private Sub Command10_Click()
BODDate.Locked = False
BeginTime.Locked = False
BODDate = Date
BeginTime = Now()
BeginTime.Locked = True
BODDate.Locked = True
Present = -1
End Sub
Any help would be appreciated.
Thanks,
poorboy13