Sep 26, 2003 #1 yakdogs Programmer Aug 13, 2002 40 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 Mar 19, 2002 1,313 US Post the record source for your form. Jim DeGeorge Upvote 0 Downvote
Sep 26, 2003 Thread starter #3 yakdogs Programmer Aug 13, 2002 40 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 Sep 4, 2003 31 CA Hi, In form's design view for txtDate put for ControlSource Property: =Now() Upvote 0 Downvote