Jul 1, 2001 #1 chubby Programmer Apr 28, 2001 278 US I was wondering, is there a way I can change the format for entering the date in my form to just yymm? My underlying table field is a date/time field.
I was wondering, is there a way I can change the format for entering the date in my form to just yymm? My underlying table field is a date/time field.
Jul 2, 2001 1 #2 Aivars Programmer May 4, 2001 687 LV Set format on textbox properties window yymm or write codes in procedure Form_Load Private Sub Form_Load() Me.txtTextBox.Format = "yymm" End Sub Aivars LOL My summer holidays will start next week! Upvote 0 Downvote
Set format on textbox properties window yymm or write codes in procedure Form_Load Private Sub Form_Load() Me.txtTextBox.Format = "yymm" End Sub Aivars LOL My summer holidays will start next week!
Jul 2, 2001 Thread starter #3 chubby Programmer Apr 28, 2001 278 US Thanks, I'll try it later on tonight. I have to work late. Upvote 0 Downvote
Jul 3, 2001 Thread starter #4 chubby Programmer Apr 28, 2001 278 US it worked thanks... Upvote 0 Downvote