Author |
Topic  |
|
Romee
Junior Member
 
Netherlands
180 Posts |
Posted - 03 April 2002 : 13:07:02
|
http://www.bijenhouden.nl
The eventmod worked fine for some months on my forum. But now suddenly I get this failure Microsoft VBScript runtime fout '800a0005' Invalid procedure call or argument: 'Monthname'
/test/forum/inc_functions.asp, line 721 line 721 is
StrToDate = cdate("" & MonthName(cint(Mid(strDateTime, 5,2))) & " " & Mid(strDateTime, 7,2) & ", " & Mid(strDateTime, 1,4) & " " & Mid(strDateTime, 9,2) & ":" & Mid(strDateTime, 11,2) & ":" & Mid(strDateTime, 13,2) & "")
Can someone please help me soon. thanks Romée
|
|
crash
Advanced Member
    
Netherlands
2064 Posts |
Posted - 03 April 2002 : 13:20:38
|
what is the function called in which this codes sits
i don't have that code... what's your version?
(is the function called "function strToDate(strDateTime)"?)
 Crash's Site | Crash is from 
Edited by - crash on 03 April 2002 13:21:55 |
 |
|
Romee
Junior Member
 
Netherlands
180 Posts |
Posted - 03 April 2002 : 13:24:31
|
Hi crash it is this
function StrToDate(strDateTime) if ChkDateFormat(strDateTime) then StrToDate = cdate("" & MonthName(cint(Mid(strDateTime, 5,2))) & " " & Mid(strDateTime, 7,2) & ", " & Mid(strDateTime, 1,4) & " " & Mid(strDateTime, 9,2) & ":" & Mid(strDateTime, 11,2) & ":" & Mid(strDateTime, 13,2) & "") else StrToDate = "" & strForumTimeAdjust end if end function
|
 |
|
crash
Advanced Member
    
Netherlands
2064 Posts |
Posted - 03 April 2002 : 13:32:47
|
try to replace the function with this one:
function strToDate(strDateTime) if chkDateFormat(strDateTime) then strToDate = cdate("" & Mid(strDateTime, 5,2) & "/" & Mid(strDateTime, 7,2) & "/" & Mid(strDateTime, 1,4) & " " & Mid(strDateTime, 9,2) & ":" & Mid(strDateTime, 11,2) & ":" & Mid(strDateTime, 13,2) & "") else strToDate = "" & strForumTimeAdjust end if end function
 Crash's Site | Crash is from 
|
 |
|
Romee
Junior Member
 
Netherlands
180 Posts |
Posted - 03 April 2002 : 13:45:53
|
Great crash, It worked! I 'll try to cool down now. bedankt, Romée
|
 |
|
crash
Advanced Member
    
Netherlands
2064 Posts |
Posted - 03 April 2002 : 15:06:51
|
you're welcome!
 Crash's Site | Crash is from 
|
 |
|
|
Topic  |
|
|
|