Sep 26, 2003 #1 yakdogs Programmer Joined Aug 13, 2002 Messages 40 Location US I have a form with a date field that I am trying to set up so that it only pulls in the current date information OnLoad. Can someone give me a sample? Thanks
I have a form with a date field that I am trying to set up so that it only pulls in the current date information OnLoad. Can someone give me a sample? Thanks
Sep 26, 2003 #2 jdegeorge Programmer Joined Mar 19, 2002 Messages 1,313 Location US Post the record source for your form. Jim DeGeorge Upvote 0 Downvote
Sep 26, 2003 Thread starter #3 yakdogs Programmer Joined Aug 13, 2002 Messages 40 Location US Is this what you are looking for? I am missing something but cannot figure it out. Private Sub Form_Load() txtDate.Value = Now() End Sub Upvote 0 Downvote
Is this what you are looking for? I am missing something but cannot figure it out. Private Sub Form_Load() txtDate.Value = Now() End Sub
Sep 27, 2003 #4 boriska40 Programmer Joined Sep 4, 2003 Messages 31 Location CA Hi, In form's design view for txtDate put for ControlSource Property: =Now() Upvote 0 Downvote