D
DaveB
I'm getting a lot closer to making it work! The only
problem now is when I click on Command94 it only gives me
the hours, but not the minutes. Command 92 is at 7:22pm
and Command93 is at 9:35pm but it shows in
TotalTimetoBill 2:00 instead of 2:08.
Option Compare Database
Private Sub Command91_Click()
Me!DateTime1stContact = now()
End Sub
Private Sub Command92_Click()
StartDateTime = Date + Time()
End Sub
Private Sub Command93_Click()
Me!CompletionDateTime = now()
End Sub
Private Sub Command94_Click()
Me.TotalTimetoBill = DateDiff("h", Me!StartDateTime, Me!
CompletionDateTime)
End Sub
problem now is when I click on Command94 it only gives me
the hours, but not the minutes. Command 92 is at 7:22pm
and Command93 is at 9:35pm but it shows in
TotalTimetoBill 2:00 instead of 2:08.
Option Compare Database
Private Sub Command91_Click()
Me!DateTime1stContact = now()
End Sub
Private Sub Command92_Click()
StartDateTime = Date + Time()
End Sub
Private Sub Command93_Click()
Me!CompletionDateTime = now()
End Sub
Private Sub Command94_Click()
Me.TotalTimetoBill = DateDiff("h", Me!StartDateTime, Me!
CompletionDateTime)
End Sub