|
-
Mar 20th, 2007, 09:15 AM
#1
Thread Starter
New Member
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.
-
Mar 20th, 2007, 09:17 AM
#2
Thread Starter
New Member
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
-
Mar 20th, 2007, 10:05 AM
#3
Re: msAccess
 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.
-
Mar 20th, 2007, 10:08 AM
#4
Re: msAccess
 Originally Posted by myst
cat As New ADOX.Catalog
Does it error on this line?
If so, you are missing a reference.
-
Mar 20th, 2007, 10:09 AM
#5
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|