|
-
Jul 4th, 2003, 08:54 AM
#1
Thread Starter
Fanatic Member
Configuring datevalues
Hi
I have a lbl on my form which shows todays date but
I need to configure this date....
I need the date to register as yesterdays date until 06.30am........
I know I cound probably use dateadd etc but I need something that will deduct the date until 06.30am and then show todays date..............Does anyone know of anything that could
accomplish this??
Hope I have made myself clear!!!!
Thanks
** HOLLY ** 
-
Jul 4th, 2003, 09:43 AM
#2
Hyperactive Member
yep. Clear as mud....

Best Bar.....
-
Jul 4th, 2003, 09:43 AM
#3
Hyperactive Member
yep. Clear as mud....

Best Bar.....
-
Jul 4th, 2003, 09:47 AM
#4
Hyperactive Member
VB Code:
If Time < "06:30:00" Then
Label1.Caption = (Format(Now - 1, "dd/mm/YYYY"))
Else
Label1.Caption = (Format(Now, "dd/mm/YYYY"))
End If

Best Bar.....
-
Jul 4th, 2003, 10:17 AM
#5
Thread Starter
Fanatic Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|