joeserrone
The cat of the cul-de-sac
- Local time
- Today, 08:10
- Joined
- Dec 17, 2006
- Messages
- 164
I have an Access Form that captures On Current Event the timestamp, I also want to capture today's date in short format mm/dd/yy. How do I accomplish this in VBA? I currently have the code below to capture the timestamp
Private Sub Form_Current()
Me.Initial_Timestamp = Now()
Earns_Processor.Value = [Forms]![PowerUserForm]!cboNameEnter
Me.RDepositorAcct.SetFocus
End Sub
Private Sub Form_Current()
Me.Initial_Timestamp = Now()
Earns_Processor.Value = [Forms]![PowerUserForm]!cboNameEnter
Me.RDepositorAcct.SetFocus
End Sub