bootwalker
New member
- Local time
- Today, 12:39
- Joined
- Apr 19, 2013
- Messages
- 7
Hi all,
I could use your help on this one. I get an error (Run-time error '438' Object doesn't support this property or methode), when I try to execute the following insert query:
I'm not sure but i think the problen lies around this part
It trys to set as a date, a label.caption but i'm not realy sure, it could also be the TempVars.
Any one got a hint?
Thank You
Boot
I could use your help on this one. I get an error (Run-time error '438' Object doesn't support this property or methode), when I try to execute the following insert query:
Code:
SQLstring = "Insert into Hours (Entry date, Uses, Hours, Task, Description, )" & _
"Values ('#" & Me.Controls("day" & I).Caption & "#','" & TempVars!tmpUserID & "'," & _
"'" & Me.Controls("hours" & I) & "','" & Me.Controls("labelTask") & "'," & _
"'" & Me.Controls("comment" & I) & "')"
Code:
'#" & Me.Controls("day" & I).Caption & "#'
Any one got a hint?
Thank You
Boot