NotSoRandomOne
Registered User.
- Local time
- Today, 07:23
- Joined
- Sep 15, 2009
- Messages
- 51
I know I've done this before, but can't quickly find the solution. How do I get the proper date out of a TextBox that has been formatted for dates? When using the following, the date simply shows up as "12:00:01 AM" rather than the "1/30/2024" text in the box.
Code:
Dim enteredDate As String
enteredDate = Me.DateTextBox.Value
...
CurrentDb.Execute "Insert Into TransactionTable ([TheDate], [Amount], [Account]) Values(" & CDate(enteredDate) & ", " & amount & ", ""1"")", dbFailOnError