×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Microsoft VBScript runtime error '800a000d'

Microsoft VBScript runtime error '800a000d'

Microsoft VBScript runtime error '800a000d'

(OP)
Have a form on a website that works until the user hits submit. Then they get the following error:
Microsoft VBScript runtime  error '800a000d'

Type mismatch: 'LBound'

/database/acc06.asp, line 81


This form was created from an Access 2003 database which I inherited with this job. I am not a programmer, so please be basic with the explanation on how I can fix this.

Thanks!

RE: Microsoft VBScript runtime error '800a000d'

you are prob trying to find the LBound of something which isnt an array

RE: Microsoft VBScript runtime error '800a000d'

(OP)
What is an LBound?

RE: Microsoft VBScript runtime error '800a000d'

lbound and ubound are the lower and upper boundaries of an array.  Typically an array starts at element zero, so an array with data like this:

myArray(0)="something"
myArray(1)="something more"
myArray(2)="something else"

has a lbound of 0 and a ubound of 2.  As you can see there are 3 elements when you add in the zeroth place.

I hope you find this post helpful.  

Regards,

Mark

RE: Microsoft VBScript runtime error '800a000d'

(OP)
Here is the coding. I still am lost on this one. I have bolded the coding form line 81. Thanks in advance to everyone that has given posts so far.

Step 2<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../Connections/acc.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
  MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form2") Then

  MM_editConnection = MM_acc_STRING
  MM_editTable = "housing05"
  MM_editRedirectUrl = "added.asp"
  MM_fieldsStr  = "date_submitted|value|member_type|value|member_id|value|last_name|value|
first_name|value|address_type|value|company|value|address|value|city|value
|state|value|zip|value|email|value|daytime_phone|value|fax|value|
arrival_date|value|departure_date|value|sharing_room_1|value|
sharing_room_2|value|sharing_room_3|value|sharing_room_4|value|room_type|
value|bed_type|value|smoking_preference|value|ada|value|payment_type|
value|cc_number|value|cc_exp|value|cc_name|value"
  MM_columnsStr = "date_submitted|',none,NULL|member_type|',none,'|member_id|',none,'|
last_name|',none,'|first_name|',none,'|address_type|',none,'|company|
',none,'|address|',none,'|city|',none,'|state|',none,'|zip|',none,'|
email|',none,'|daytime_phone|',none,'|fax|',none,'|arrival_date|
',none,'|departure_date|',none,'|sharing_room_1|',none,'|sharing_room_2|
',none,'|sharing_room_3|',none,'|sharing_room_4|',none,'|room_type|
',none,'|bed_type|',none,'|smoking_preference|',none,'|ada|',none,'|
payment_type|',none,'|cc_number|',none,'|cc_exp|',none,'|cc_name|
',none,'"

  ' create the MM_fields and MM_columns arrays
  MM_fields = Split(MM_fieldsStr, "|")
  MM_columns = Split(MM_columnsStr, "|")
  
  ' set the form values
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
  Next

  ' append the query string to the redirect URL
  If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
      MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
      MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
  End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

  ' create the sql insert statement
  MM_tableValues = ""
  MM_dbValues = ""
   For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
      MM_formVal = MM_emptyVal

    Else
      If (MM_altVal <> "") Then
        MM_formVal = MM_altVal
      ElseIf (MM_delim = "'") Then  ' escape quotes
        MM_formVal = "'" & Replace(MM_formVal,"'","'") & "'"
      Else
        MM_formVal = MM_delim + MM_formVal + MM_delim
      End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
      MM_tableValues = MM_tableValues & ","
      MM_dbValues = MM_dbValues & ","
    End If
    MM_tableValues = MM_tableValues & MM_columns(MM_i)
    MM_dbValues = MM_dbValues & MM_formVal
  Next
  MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

  If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_acc_STRING
Recordset1.Source = "SELECT * FROM housing05"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close