Had a small app in Access 2007 that used the following that I created:
Option Compare Database
Function stripDate(blah As Date) As Date
stripDate = Format(blah, "hh:mm:ss")
End Function
Lost disk, and small ap, but had back up the function in word. They upgraded my pc, got Office 2010 Pro.
Recreated the ap, added the function, but now when ever I run a query that used the function I get Undefined funcution 'stripDate'in expression.
In the qbe grid the expression is: TranTime: stripDate([dbo_Transaction_Table]![Time_of_Transaction])
Tried all sort of permutations, and looked in the web, but stumped.
Thanks in advance.
jpl
Option Compare Database
Function stripDate(blah As Date) As Date
stripDate = Format(blah, "hh:mm:ss")
End Function
Lost disk, and small ap, but had back up the function in word. They upgraded my pc, got Office 2010 Pro.
Recreated the ap, added the function, but now when ever I run a query that used the function I get Undefined funcution 'stripDate'in expression.
In the qbe grid the expression is: TranTime: stripDate([dbo_Transaction_Table]![Time_of_Transaction])
Tried all sort of permutations, and looked in the web, but stumped.
Thanks in advance.
jpl