Results 1 to 5 of 5

Thread: Can Not Find Installable ISAM

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2007
    Posts
    2

    Can Not Find Installable ISAM

    Pls Help.!!! I m getting error as Runtime error '-2147467259 (8000500)
    cannot find installable ISAM
    Last edited by Hack; Mar 20th, 2007 at 10:07 AM.

  2. #2

    Thread Starter
    New Member
    Join Date
    Mar 2007
    Posts
    2

    Re: msAccess

    also when i write normal conncection program!! it gives me error!! as
    Compile error :
    User defined type not defined!!

    my code is
    Private Sub Command1_Click()
    Dim tbl As New Table, cat As New ADOX.Catalog

    ' 1) Create the DataBase
    cat.Create "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "Clients.mdb" & ";"
    ' 2) Create Table name "ClientsInfo"
    tbl.Name = "ClientsInfo"
    ' 3) Add 3 Fields
    tbl.Columns.Append "Name", adVarWChar, 50 'Text
    tbl.Columns.Append "Age", adInteger 'Number
    tbl.Columns.Append "Address", adLongVarWChar 'Memo
    ' 4) Save the Table to the DataBase
    cat.Tables.Append tbl

    '*********************** Use this to Open and/or Modify an existing DataBase **************
    'Open the DataBase
    'cat.ActiveConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & App.Path & "\Clients.mdb" & ";"
    '*********************************************************************************
    MsgBox "Clients.mdb Created."
    End Sub

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: msAccess

    Quote Originally Posted by myst
    Pls Help.!!! I m getting error as Runtime error '-2147467259 (8000500)
    cannot find installable ISAM
    Have a look at this.

    Or, try this.

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: msAccess

    Quote Originally Posted by myst
    cat As New ADOX.Catalog
    Does it error on this line?

    If so, you are missing a reference.

  5. #5
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Can Not Find Installable ISAM

    Also, I have split your posts our of this thread into its own thread.

    Your questions are not related to the other thread, and, the other thread was created by another member, so, for you issues, you should have your own.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width