473,394 Members | 1,755 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Couldn't Find Installable ISAM

140 100+
error is coming when i run the form.

Couldn't Find Installable ISAM.

CON.OPEN error is pointing to this place. problem in db or else
Jan 25 '07 #1
5 6952
willakawill
1,646 1GB
error is coming when i run the form.

Couldn't Find Installable ISAM.

CON.OPEN error is pointing to this place. problem in db or else
Hi, would you please post the code that is creating the error. That would be all of the code including the declaration of con
Thanks
Jan 27 '07 #2
indhu
140 100+
Hi, would you please post the code that is creating the error. That would be all of the code including the declaration of con
Thanks

Dim CON As New ADODB.Connection
Dim RS As ADODB.Recordset
Dim strTest As String
Dim myquery As Variant
Dim accdb As String ' equivalent to sql query

Sub CONOPEN()

Set CON = New ADODB.Connection
Set RS = New ADODB.Recordset

CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data" _
& "source=E:\VB_image\storyboard\storyboard.mdb"

CON.Open

Set RS = CON.Execute(accdb, adOpenDynamic)
End Sub
Sub CONCLOSE()

' Close Recordset/Dbase
RS.Close
CON.Close

' Clear the memory
Set RS = Nothing
Set CON = Nothing

End Sub

Private Sub Form_Load()
accdb = "SELECT * FROM story" & _
"WHERE projectid='" & myquery & "'"

Call CONOPEN

project_txt.Text = RS!project
date_txt.Text = RS!Date
episode.Text = RS!episode
scene_txt.Text = RS!scene
seq_txt.Text = RS!sequence
shot_txt.Text = RS!shot
action_txt.Text = RS!Action
dialogue_txt.Text = RS!dialogue
camera_txt.Text = RS!camera

Call CONCLOSE


End Sub

Private Sub episode_Click()
On Error Resume Next

myquery = episode.Text 'Load selected ComboBox text into a variable

accdb = "SELECT * FROM story " & _
"WHERE projectid= '" & myquery & "' "
Call CONOPEN ' Open dbase & Recordset

' Populate TextBoxes
project_txt.Text = RS!project
date_txt.Text = RS!Date
scene_txt.Text = RS!scene
seq_txt.Text = RS!sequence
shot_txt.Text = RS!shot
action_txt.Text = RS!Action
dialogue_txt.Text = RS!dialogue
camera_txt.Text = RS!camera

Call CONCLOSE ' Close dbase & Recordset

End Sub
Jan 27 '07 #3
willakawill
1,646 1GB
After more than 70 posts you should be posting your code in code blocks. It is very hard to read when you post it as text. Just paste the code, highlight it and click on the # button on the toolbar.

This part of your code:
Expand|Select|Wrap|Line Numbers
  1. CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data" _
  2. & "source=E:\VB_image\storyboard\storyboard.mdb"
is joining the words data and source into one word datasource.
Change it to this:
Expand|Select|Wrap|Line Numbers
  1. CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data " _
  2. & "source=E:\VB_image\storyboard\storyboard.mdb"
and it should work better.
Jan 27 '07 #4
indhu
140 100+
After more than 70 posts you should be posting your code in code blocks. It is very hard to read when you post it as text. Just paste the code, highlight it and click on the # button on the toolbar.

This part of your code:
Expand|Select|Wrap|Line Numbers
  1. CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data" _
  2. & "source=E:\VB_image\storyboard\storyboard.mdb"
is joining the words data and source into one word datasource.
Change it to this:
Expand|Select|Wrap|Line Numbers
  1. CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data " _
  2. & "source=E:\VB_image\storyboard\storyboard.mdb"
and it should work better.

sorry for that.


runtime error 3021 is coming
Either BOF or EOF is true or current record is deleted. Requested opertion requires a current record.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Form_Load()
  2.  
  3. accdb = "SELECT * FROM story " & _
  4.         "WHERE projectid='" & myquery & "'"
  5.  
  6. Call CONOPEN
  7.  
  8. projectid.Text = RS!projectid showing error on this part
  9. projecttxt.Text = RS!project
  10. date_txt.Text = RS!Date
  11. episode.Text = RS!episode
  12. seq_txt.Text = RS!sequence
  13. scene_txt.Text = RS!scene
  14. shot_txt.Text = RS!shot
  15. action_txt.Text = RS!Action
  16. dialogue_txt.Text = RS!dialogue
  17. camera_txt.Text = RS!camera
  18.  
  19. Call CONCLOSE
  20.  
  21. End Sub
i didn't delete any record in backend. still the error is coming like this.

if i click record source property for Data control object its giving error as unrecognised database format 'E:\VB_image\storyboard\storyboard.mdb'

why this error is comg in recordsource property?
Jan 27 '07 #5
willakawill
1,646 1GB
What is the data type for projectid in your database?
Is it a text or numeric value?
Jan 27 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

10
by: Brent | last post by:
Hi, my asp.net c# app is trying to connect to an Access database with a password and am I getting the error.. Could not find installable ISAM. . If I connect to one without a password it works...
1
by: Steve | last post by:
I get a "Could Not Find Installable ISAM" error on my objConn.open() statement. I suspect my connection string is bad. What I am trying to do is write to an Excel file on my local computer from a...
1
by: Karl Irvin | last post by:
In the module below, I get a "Could not find installable ISAM" error on the tdf.refresh link. The NewConnection refers to a valid database/table. My References include VBA, Access 9.0 Object...
2
by: Les Desser | last post by:
I have installed Access 97 at least 100 times or more without problem on W98 and W2000 without any problems. I have my regular options that I tick, including all the Data and conversion options....
2
by: Horst Walter | last post by:
I am using C# / ADO.NET to create an Excel sheet: This connection string works: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filename + ";" + "Extended Properties=Excel 8.0;"; This...
6
by: Robert Lawson | last post by:
I continue to get the below error message when trying to load a aspx file. Could someone please point me in the right direction for solving this? I'm trying to access an access data base and I'm...
1
by: JP Lacasse | last post by:
I translate a web application from ASP to ASP.NET and I keep getting the following error: Could not find installable ISA I used the same ConnectString ("DBQ=" &...
2
by: Henrik | last post by:
Hello I starting use ASP.NET and has created a new file to open a Access database I get these error and cant solve it - please need some help. I Use Windows 2000 (have also tried to put it...
1
by: Anatoly Kurilin | last post by:
Hi, each time I use that code for calculating a number of user connected to a data file, I get an error message: Could not find installable ISAM. What do I do wrong? Dim cn As New...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.