Results 1 to 5 of 5

Thread: Can Not Find Installable ISAM

  1. #1
    New Member
    Join Date
    Mar 07
    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
    New Member
    Join Date
    Mar 07
    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
    Super Moderator Hack's Avatar
    Join Date
    Aug 01
    Location
    Searching for mendhak
    Posts
    58,283

    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.
    Please use [Code]your code goes in here[/Code] tags when posting code.
    When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
    Before posting your question, did you look here?
    Got a question on Linux? Visit our Linux sister site.
    I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum section.

    Creating A Wizard In VB.NET
    Paging A Recordset
    What is wrong with using On Error Resume Next
    Good Article: Language Enhancements In Visual Basic 2010
    Upgrading VB6 Code To VB.NET
    Microsoft MVP 2005/2006/2007/2008/2009/2010/2011/2012/Defrocked

  4. #4
    Super Moderator Hack's Avatar
    Join Date
    Aug 01
    Location
    Searching for mendhak
    Posts
    58,283

    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.
    Please use [Code]your code goes in here[/Code] tags when posting code.
    When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
    Before posting your question, did you look here?
    Got a question on Linux? Visit our Linux sister site.
    I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum section.

    Creating A Wizard In VB.NET
    Paging A Recordset
    What is wrong with using On Error Resume Next
    Good Article: Language Enhancements In Visual Basic 2010
    Upgrading VB6 Code To VB.NET
    Microsoft MVP 2005/2006/2007/2008/2009/2010/2011/2012/Defrocked

  5. #5
    Super Moderator Hack's Avatar
    Join Date
    Aug 01
    Location
    Searching for mendhak
    Posts
    58,283

    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.
    Please use [Code]your code goes in here[/Code] tags when posting code.
    When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
    Before posting your question, did you look here?
    Got a question on Linux? Visit our Linux sister site.
    I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum section.

    Creating A Wizard In VB.NET
    Paging A Recordset
    What is wrong with using On Error Resume Next
    Good Article: Language Enhancements In Visual Basic 2010
    Upgrading VB6 Code To VB.NET
    Microsoft MVP 2005/2006/2007/2008/2009/2010/2011/2012/Defrocked

Posting Permissions

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