Author |
Topic |
|
tuningsv
New Member
El Salvador
67 Posts |
Posted - 24 July 2003 : 08:23:27
|
hi, maybe someone can help me
i am having this error after implementing the calendar mod:
Microsoft VBScript runtime error '800a000d' Type mismatch: '[undefined]'
inc_activeusers.asp, line 39
the error shows when you enter at default.asp, the calendar shows, but the statistics and the active users info does not appear.
i check all the files but all look well.
|
|
tuningsv
New Member
El Salvador
67 Posts |
Posted - 24 July 2003 : 10:31:52
|
i am having this error too
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'AUHandleLoging'
/forum/login.asp, line 64
thanks for any help |
|
|
tuningsv
New Member
El Salvador
67 Posts |
Posted - 24 July 2003 : 10:49:13
|
OK, I FOUND THE PROBLEM BUT NOW IN ACTIVE USERS STATISTICS DOES NOT APPEAR ANY USER.
Active Members: 0 | Guests: 0 || Total: 0
|
|
|
tuningsv
New Member
El Salvador
67 Posts |
Posted - 24 July 2003 : 11:13:36
|
now, when i click any date in the calendar gives me this error
Microsoft VBScript runtime error '800a0006'
Overflow: 'cLng'
/forum/cal.asp, line 1383 cal.asp ------------------ If recForumCount <> "" then For iForum = 0 to recForumCount ForumForumID = allForumData(fFORUM_ID, iForum) ForumSubject = allForumData(fF_SUBJECT, iForum) strOptions = strOptions & "<option value=""" & ForumForumID & """" '########line 1383 If cLng(arrRqCalForumID) = cLng(ForumForumID) then strOptions = strOptions & " selected" '########### strOptions = strOptions & ">" & ChkString(left(ForumSubject, 50),"display") & "</option>" & vbNewline Next End if
any idea? |
Edited by - tuningsv on 24 July 2003 17:09:30 |
|
|
tuningsv
New Member
El Salvador
67 Posts |
Posted - 24 July 2003 : 17:39:01
|
reading a little more of topics if found a tip
change this line
If cLng(arrRqCalForumID) = cLng(ForumForumID) then strOptions = strOptions & " selected"
for this
If arrRqCalForumID = ForumForumID then strOptions = strOptions & " selected"
it works!
|
|
|
Jóhannes
Junior Member
Iceland
139 Posts |
Posted - 26 September 2003 : 08:19:17
|
...another solution regarding If cLng(arrRqCalForumID) = cLng(ForumForumID) then strOptions = strOptions & " selected" see:
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=45202 |
Jóhannes
|
Edited by - Jóhannes on 26 September 2003 08:20:04 |
|
|
|
Topic |
|