Hai,
I have maintenance database program which uses the following function to join the date and time values into a single date property for easier calculation. My user requires the date and time entry in differrent fields, where its easy for me to have it in same field in database for all further processing.
Function JoinTime(inDate As Date, InTime As Date)
Dim New_Date As Date
New_Date = Format(New_Date, "General Date")
New_Date = (inDate + InTime)
JoinTime = New_Date
End Function
This "Format" is working in some computers , but not in some. All computers have the same Windows XP and MS access 2000.
Can some one guide me?
The whole program is available for download from,
regards,
Mini
I have maintenance database program which uses the following function to join the date and time values into a single date property for easier calculation. My user requires the date and time entry in differrent fields, where its easy for me to have it in same field in database for all further processing.
Function JoinTime(inDate As Date, InTime As Date)
Dim New_Date As Date
New_Date = Format(New_Date, "General Date")
New_Date = (inDate + InTime)
JoinTime = New_Date
End Function
This "Format" is working in some computers , but not in some. All computers have the same Windows XP and MS access 2000.
Can some one guide me?
The whole program is available for download from,
regards,
Mini