473,406 Members | 2,371 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,406 software developers and data experts.

ADO Recordset Error

pentahari
I get the following error:
run-time error '-2147217904 (80040e10)'
Method 'open' of object '_Recordset' field
How to solve the problem?
Please Help me. I am waiting for your response.
Expand|Select|Wrap|Line Numbers
  1. Dim CONN As New ADODB.Connection
  2. Dim RS As New ADODB.Recordset
  3. CONN.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\data\db.mdb;Jet OLEDB:Database Password=pentahari;"
  4. query="select *,IIf([AllergyType]=""Drug Allergy"",1,0) as DrugSort from Allergies order by DrugSort"
  5. RS.Open query, CONN, adOpenKeyset, adLockOptimistic
  6.  
  7. RS.Close
  8. CONN.Open
  9. CONN.Close
  10.  
Jun 29 '09 #1
20 3774
MikeTheBike
639 Expert 512MB
@pentahari
Hi

Perhaps instead of this
Expand|Select|Wrap|Line Numbers
  1. RS.Open query, CONN, adOpenKeyset, adLockOptimistic 
  2.  
  3. RS.Close 
  4. CONN.Open 
  5.  
you could try this
Expand|Select|Wrap|Line Numbers
  1. CONN.Open 
  2. RS.Open query, CONN, adOpenKeyset, adLockOptimistic 
  3. RS.Close 
???

MTB
Jun 30 '09 #2
yarbrough40
320 100+
it also doesn't look like you've declared the query string variable.
Expand|Select|Wrap|Line Numbers
  1. dim query as string
  2.  
or is this a new function that my old old software doesn't have?
Jun 30 '09 #3
I Change my coding to yours reply but that error still come.

Expand|Select|Wrap|Line Numbers
  1. Dim CONN As New ADODB.Connection
  2. Dim RS As New ADODB.Recordset
  3. Dim query as String
  4. CONN.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\data\db.mdb;Jet OLEDB:Database Password=pentahari;"
  5. query="select *,IIf([AllergyType]=""Drug Allergy"",1,0) as DrugSort from Allergies order by DrugSort"
  6. CONN.Open
  7. RS.Open query, CONN, adOpenKeyset, adLockOptimistic
  8. RS.Close
  9. CONN.Close
  10.  
Jul 1 '09 #4
yarbrough40
320 100+
try:

Expand|Select|Wrap|Line Numbers
  1. Dim CONN As New ADODB.Connection 
  2. Dim RS As New ADODB.Recordset 
  3. Dim query as String 
  4. CONN.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\data\db.mdb;Jet OLEDB:Database Password=pentahari;" 
  5. query = "select *,IIf([AllergyType]=""Drug Allergy"",1,0) as DrugSort from Allergies order by DrugSort" 
  6. CONN.Open
  7. RS.ActiveConnection = CONN
  8. RS.Open (query)
  9.  
  10. RS.Close 
  11. CONN.Close 
  12.  
Jul 1 '09 #5
MikeTheBike
639 Expert 512MB
@pentahari
Hi
Perhaps you could try
Expand|Select|Wrap|Line Numbers
  1. Dim CONN As New ADODB.Connection 
  2. Dim RS As New ADODB.Recordset 
  3. Dim query as String 
  4. CONN.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\data\db.mdb;Jet OLEDB:Database Password=pentahari;" 
  5. query="select *,IIf([AllergyType]=""Drug Allergy"",1,0) as DrugSort from Allergies order by IIf([AllergyType]=""Drug Allergy"",1,0)" 
  6. CONN.Open 
  7. RS.Open query, CONN, adOpenKeyset, adLockOptimistic 
  8. RS.Close 
  9. CONN.Close 
??

I have changed the ORDER BY clause, ie it is explicitly calculated.

MTB
Jul 2 '09 #6
9815402440
180 100+
hi
if datatype of allergyType filed is memo then iif condition will generate error.
because iif dont support memo datatypes.
if this is not the case and all of the aforementioned suggestions failed then run the
query in database and look for #Error in the DataSheet view. if found then remove it first.
regards
manpreet singh dhillon hoshiarpur
Aug 26 '09 #7
Hi everyone,

I have a program about search engine about music.. I like to add music player also but for now i just focus on searching a correct data on a database.. Since I use to study visual basic, I use practice as well. Below is the code wherein I have to search all the data on a database (THIS IS TO TYPE ALL THE TEXTBOXES AND WHEN ONE TEXTBOX IS NOT FILL, THE MESSAGEBOX WILL SHOW "Search not found". These are Title, Artist, Album and Year. I want to search only one or two textboxes and it will show "search found". For example: I type the title on a textbox and when I click the search button it should be "search found" even if i'm not filling the Artist, the Year and Album textbox.. I try to using IF..THEN(nesting) on the next statement but i'm confused on getting a "search not found" even I use the rs.movenext.. What are the alternative ways to do this?

Private Sub CommandButton1_Click()
Dim rs As New ADODB.Recordset
Dim cn As New ADODB.Connection

cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\databases\Songs.mdb;Persist Security Info=False"
rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly

Dim a As String
Dim b As String
Dim c As String
Dim d As String

a = txtTitle.Text
b = txtArtist.Text
c = txtYear.Text
d = txtAlbum.Text


If a = "" And b = "" And c = "" And d = "" Then
MsgBox "Please fill the textboxes"
Else
Do While Not rs.EOF
If b <> rs!Artist And a <> rs!Title Then
rs.MoveNext
ElseIf c <> rs!Year And d <> rs!Album Then
rs.MoveNext
Else
MsgBox "Search found"
Set rs = Nothing
cn.Close
Exit Sub
End If
Loop
MsgBox "No search found"
Set rs = Nothing
cn.Close
End If

End Sub


I will appreciated for those who'd rply my message..

Very thanks.. =)
Sep 4 '09 #8
smartchap
236 100+
In place of
Expand|Select|Wrap|Line Numbers
  1. If b <> rs!Artist And a <> rs!Title Then
  2. rs.MoveNext
  3. ElseIf c <> rs!Year And d <> rs!Album Then
  4. rs.MoveNext
  5. Else
  6.  
try using:
Expand|Select|Wrap|Line Numbers
  1. If b <> rs!Artist And a <> rs!Title And c <> rs!Year And d <> rs!Album Then
  2. rs.MoveNext
  3. Else
  4.  
Sep 19 '09 #9
Hello smartchap,

Thanks for the reply and I really appreciated it.. it works and i pass it to flexgrid.. and I try also using a procedure and I seperate the Title, Artist, year and album then calling the procedure.. thanks for the help.. Actually it works in terms of searching a record. my problem is that when I search it, the data will found but when I type another record, it adds to what I've search on the previous one.. I like to search only those records and it will not add another record on the previous one.. I hope u understand.. here is the code on what I did..
Expand|Select|Wrap|Line Numbers
  1. Private Sub CommandButton1_Click()
  2.  
  3. Dim rs As New ADODB.Recordset
  4. Dim cn As New ADODB.Connection
  5.  
  6. If txtTitle.Text = "" And txtArtist.Text = "" And txtYear.Text = "" And txtAlbum.Text = "" Then
  7. MsgBox "Please fill the textboxes"
  8. ElseIf Not txtTitle.Text = "" Then
  9. Call TitleSearch
  10. ElseIf Not txtArtist.Text = "" Then
  11. Call ArtistSearch
  12. ElseIf Not txtYear.Text = "" Then
  13. Call YearSearch
  14. ElseIf Not txtAlbum.Text = "" Then
  15. Call AlbumSearch
  16. End If
  17.  
  18. End Sub
  19.  
  20. Private Sub Form_Load()
  21. Dim LWidth As Long
  22. Dim i As Integer
  23. Dim j As Integer
  24. Const BarWidth = 320
  25.  
  26. With MSFlexGrid1
  27.  
  28.      .Cols = 4
  29.  
  30.      For i = 0 To 3
  31.      MSFlexGrid1.ColAlignment(i) = flexAlignCenterCenter
  32.      Next i
  33.  
  34.      For j = 0 To 3
  35.      .ColWidth(j) = 1445
  36.      Next j
  37.  
  38.      LWidth = .Width - BarWidth
  39.     .FixedCols = 0
  40.     .Rows = 0
  41.  
  42.     .AddItem "Title" & vbTab & "Artist" & vbTab & "Album" & vbTab & "Year"
  43.     .Rows = 2
  44.     .FixedRows = 1
  45.     .WordWrap = True
  46.     .RowHeight(0) = .RowHeight(0) * 2
  47.  
  48. End With
  49. End Sub
  50.  
  51. Public Sub ArtistSearch()
  52. Dim rs As New ADODB.Recordset
  53. Dim cn As New ADODB.Connection
  54. Dim b As String
  55.  
  56. b = txtArtist.Text
  57.  
  58. cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\databases\Songs.mdb;Persist Security Info=False"
  59. rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly
  60.  
  61. Do While Not rs.EOF
  62.     If b <> rs!Artist Then
  63.     rs.MoveNext
  64.     Else
  65.     MsgBox "Search found"
  66.     MSFlexGrid1.AddItem rs!Title & vbTab & rs!Artist & vbTab & rs!Album & vbTab & rs!Year
  67.     Set rs = Nothing
  68.     cn.Close
  69.     Exit Sub
  70.     End If
  71.     Loop
  72.     MsgBox "No search found"
  73.     Set rs = Nothing
  74.     cn.Close
  75. End Sub
  76.  
  77. Public Sub TitleSearch()
  78. Dim rs As New ADODB.Recordset
  79. Dim cn As New ADODB.Connection
  80. Dim a As String
  81.  
  82. a = txtTitle.Text
  83.  
  84. cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\databases\Songs.mdb;Persist Security Info=False"
  85. rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly
  86.  
  87. Do While Not rs.EOF
  88.     If a <> rs!Title Then
  89.     rs.MoveNext
  90.     Else
  91.     MsgBox "Search found"
  92.     MSFlexGrid1.AddItem rs!Title & vbTab & rs!Artist & vbTab & rs!Album & vbTab & rs!Year
  93.     Set rs = Nothing
  94.     cn.Close
  95.     Exit Sub
  96.     End If
  97.     Loop
  98.     MsgBox "No search found"
  99.     Set rs = Nothing
  100.     cn.Close
  101. End Sub
  102.  
  103. Public Sub YearSearch()
  104.  
  105. Dim rs As New ADODB.Recordset
  106. Dim cn As New ADODB.Connection
  107. Dim c As String
  108.  
  109. c = txtYear.Text
  110.  
  111. cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\databases\Songs.mdb;Persist Security Info=False"
  112. rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly
  113.  
  114. Do While Not rs.EOF
  115.     If c <> rs!Year Then
  116.     rs.MoveNext
  117.     Else
  118.     MsgBox "Search found"
  119.     MSFlexGrid1.AddItem rs!Title & vbTab & rs!Artist & vbTab & rs!Album & vbTab & rs!Year
  120.     Set rs = Nothing
  121.     cn.Close
  122.     Exit Sub
  123.     End If
  124.     Loop
  125.     MsgBox "No search found"
  126.     Set rs = Nothing
  127.     cn.Close
  128. End Sub
  129.  
  130. Public Sub AlbumSearch()
  131. Dim rs As New ADODB.Connection
  132. Dim cn As New ADODB.Connection
  133. Dim d As String
  134.  
  135. d = txtAlbum.Text
  136.  
  137. cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\databases\Songs.mdb;Persist Security Info=False"
  138. rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly
  139.  
  140. Do While Not rs.EOF
  141.     If d <> rs!Album Then
  142.     rs.MoveNext
  143.     Else
  144.     MsgBox "Search found"
  145.     MSFlexGrid1.AddItem rs!Title & vbTab & rs!Artist & vbTab & rs!Album & vbTab & rs!Year
  146.     Set rs = Nothing
  147.     cn.Close
  148.     Exit Sub
  149.     End If
  150.     Loop
  151.     MsgBox "No search found"
  152.     Set rs = Nothing
  153.     cn.Close
  154.  
  155. End Sub
  156.  
I'll be wait for the reply.. thanks a lot.. =)
Sep 22 '09 #10
smartchap
236 100+
OK you do one thing. In the command1_Click event modify code as below:

Expand|Select|Wrap|Line Numbers
  1. Dim rs As New ADODB.Recordset
  2. Dim cn As New ADODB.Connection
  3.  
  4. Me.MSFlexGrid1.Clear
  5.  
Also, write code for clearing the textboxes as soon as any one of them is clicked, so that previous data is cleared otherwise it will always search first for Title then for Artist and so on. So if u search for a title and next if you search for an artist, it will again search for previous Title only.
Hope it clears your query.
Sep 25 '09 #11
Hi smartchap..

Thanks for the rply.. Now I have another problem with my program again which is searching music and since it is ok i guess in searching a correct data... now I have 2 problems.. problem no. 1 in searching a data again, what if i have the same title when I search but different artist and same artist but different titles? for example, I type in titlebox Because of you by Ne-yo and Because of you by 98 Degrees.. Also regarding its year.. what if some song year was the same and genre? there some songs that are 2005 and 2006. Should I change my sql syntax in recordset: "Select * from Songs1 where artist = "" "something like that?.. my problem no.2 is previewing the data with the use of media player.. I add a form for a preview so that it will play.. now i know the components to insert a media player.. I add a path column on a database so that I call it and play.. Now my problem is that, how should I call those mp3s and its path in a database in order to play the song?.. Sorry for asking again a question.. because i'm really new in vb and trying hard to get some concepts in order to understand the logic of my program on what i'm doing.. and in the next program that i will do.. I will again wait for the rply.. The code is above from my previous post but i change the .Cols = 4 into Textmatrix which is the column and row..

Thanks

Kyosuke18
Sep 30 '09 #12
smartchap
236 100+
Dear Kyosuke

For question 1, modify all 4 subroutines as per code given below:

Expand|Select|Wrap|Line Numbers
  1. Public Sub ArtistSearch()
  2. Dim rs As New ADODB.Recordset
  3. Dim cn As New ADODB.Connection
  4. Dim b As String
  5. Dim bFound As Boolean
  6.  
  7. b = txtArtist.Text
  8. bFound = False
  9.  
  10. cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=(full path here)\Songs.mdb;Persist Security Info=False"
  11. rs.Open "Select * from Songs1", cn, adOpenForwardOnly, adLockReadOnly
  12.  
  13. Do While Not rs.EOF
  14.     If LCase(b) <> LCase(rs!Artist) Then
  15.         rs.MoveNext
  16.     Else
  17.         'MsgBox "Search found"
  18.         MSFlexGrid1.AddItem rs!Title & vbTab & rs!Artist & vbTab & rs!Album & vbTab & rs!Year
  19.         bFound = True
  20.         rs.MoveNext
  21.     End If
  22. Loop
  23. If bFound = False Then MsgBox "No search found"
  24. Set rs = Nothing
  25. cn.Close
  26. End Sub
  27.  
For question 2, better u post the code (or project) what u have done so far so that I will try to modify / correct that itself. You can post a zip file. Also next time post ur code using code tags.
Oct 1 '09 #13
Hi Smartchap..

Thanks for the reply.. I test it and it works, thanks for that. Attached herewith is my program that I did so far.. I'm thinking of something to the table in database that I created, do I have to create another table for artist table, album table something like that instead of storing those records into one table? In the 3rd form that I created, I just tested on how to open a music and play it in a media player.. It is not connected on the database yet.. But rather I declared rs as adodb.recordset and cn as adodb.connection.. Is just that I don't know what should i go first.. And another question, Is it possible that when I double click the data on the flexgrid when I search it, follows on playing the music? Please check if there are some possible solution.. Sorry if I didn't design yet my program but my aim is to how it works.. Thank you very very much for the help.. I learn some solutions from and I think I should work harder and practice more on this.. Thanks again..

Regards,

Kyosuke18
Attached Files
File Type: zip Music Search.zip (23.4 KB, 87 views)
Oct 6 '09 #14
smartchap
236 100+
Dear Kyosuke18
Have a full working (& corrected) project for WindowsMedia Player. See all the * marked lines. I think u don't require Form3 as MediaPlayer can be played in Form2 itself so that if u need to search next file u can.
Attached Files
File Type: zip Music Search.zip (27.3 KB, 60 views)
Oct 7 '09 #15
smartchap
236 100+
Dear Kyosuke
I hope it solved your queries. If any other query, ask & I will try to help.
One thing, file vbskfr2.ocx was not in the zip file provided by you and I don't know what is the use of this file in your program.
Oct 8 '09 #16
hi smartchap,

I read your message thanks for the help.. regarding about vbskfr2.ocx is a vb skinner.. I change the design of the form instead of using a classic form. I just follow ur instructions on the green or asterisk.. I have problems again regarding flexgrid.. since you've entered the

RowClicked = Me.MSFlexGrid1.TextMatrix(Me.MSFlexGrid1.RowSel, 4)

in the MSFlexGrid1_Click event. When I clicked this flexgrid without doing a search the error pop ups that "Subscript out of range".. I try this solution just to avoid the error but when I search it, Example "Because of you", since there are 2 titles but different artist, when I clicked the Because of you by Ne-yo which is in the first row(assuming) it will play.. But when I clicked the Because of you by 98 degrees, only the 1st because of you by Ne-yo is still playing and not from 98 degress.. Here is the code below:

If Rowclicked = "" Then
Msgbox "No selected fields", vbCritical + vbOk, "Flexgrid"
MSFlexgrid1.Enabled = False
ElseIf Rowclicked = Me.MSFlexGrid1.TextMatrix(Me.MSFlexGrid1.RowSel, 4) Then
MSFlexgrid1.Enabled = True
End If

I add another form for adding, deleting and updating a record.. In adding a record, I don't have problems regarding that because it works on a adding.. but I have problem in deleting a record or deleting an entire row.. The code below is deletion of selected row that I added.. Now the problem is when the selected row is deleted in the flexgrid it deletes, but when I open the database name "songs1" in microsoft access the selected row that I deleted didn't.. I've tried using the sql syntax "DELETE * FROM SONGS" in the recordset that I declared and the whole record is deleted.. so I think I should use the WHERE clause next to SONGS, but I can't type the record one by one just to delete, for example "DELETE * FROM SONGS WHERE Title = "xdhsd", Artist = "dhjd", Genre = "Pop", Album = "Popfest", Year = "1954" " what should I do?

Dim rs As New ADODB.Recordset
Dim cn As New ADODB.Connection
Dim ab As String
Dim d As String

cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\Songsdb.mdb;Persist Security Info=False" '*
rs.Open "Delete * from Songs1", cn, adOpenDynamic, adLockPessimistic

d = MsgBox("Do you want to delete a record?", vbQuestion + vbYesNo, "Delete Record")

If MSFlexGrid1.Rows > MSFlexGrid1.FixedRows + 1 Then
MSFlexGrid1.RemoveItem (MSFlexGrid1.Row)
Else
MSFlexGrid1.Rows = MSFlexGrid1.FixedRows
End If

And again, Thank you very much for the help and some guides that you've gave to me everytime I have problems regarding vb programming.. I really appreciate it.. Attach here with is the zip file regarding the program.. I just modify the codes and add some.. I also try my best to find a solution so that my program will work.. Thanks

Kyosuke18=)
Attached Files
File Type: zip Music Search.zip (31.0 KB, 83 views)
Oct 22 '09 #17
smartchap
236 100+
Dear Kyosuke18
I thought u must have found the results, but today when I checked my subscriptions came to know ur problems. Sorry for the delay.
Regarding ur problems of 'Subscript out of range' and not playing second or other selected record, make changes in Click event of MSFlexGrid as follows:
Expand|Select|Wrap|Line Numbers
  1. Private Sub MSFlexGrid1_Click() '*
  2.     'RowClicked = Me.MSFlexGrid1.RowSel'*
  3.     'If RowClicked = 0 Then RowClicked = 1'*
  4.     'MsgBox RowClicked'*
  5.     If Me.MSFlexGrid1.Rows < 2 Then 'i.e.if clicked MSF without any entry in MSF then not reqd error "Subscript out of range".
  6.         MsgBox "Please search some data first."
  7.         Exit Sub
  8.     End If
  9.     RowClicked = Me.MSFlexGrid1.TextMatrix(Me.MSFlexGrid1.RowSel, 4) '*
  10. End Sub
  11.  
  12.  
I am sure ur problems will be solved. Regarding deletion & addition plz give me some time and I will give u solution.
Nov 27 '10 #18
smartchap
236 100+
Because when u click on Grid without doing a search, i.e. when there is no filled row, variable RowClicked remains blank and in ur subroutine it is blank so gives error 'Subscript out of range' and also new selected item (i.e. row) is not entered in RowClicked so the errors.
Nov 27 '10 #19
smartchap
236 100+
I think for deleting also u must use RowClicked variable and delete in both MSFlexGrid as well as Songs.mdb
Nov 27 '10 #20
smartchap
236 100+
Dear Kyosuke
I analysed ur Form4. In delete subroutine Command2_Click u have used
rs.Open "Delete * from Songs1", cn, adOpenDynamic, adLockPessimistic

I think it will delete all records at a time. Second in If...EndIf loop how will it know which record to delete?
Please modify the event. remove
rs.Open "Delete * from Songs1", cn, adOpenDynamic, adLockPessimistic

line and also loop
use a Do..While or for..next loop. Search from first record till last record. As soon as record No is equal to RowClicked (check if +1 is required) delete that record in both MSFlexGrid as well as in Songs1.mdb after confirming from user by displaying details of record to be deleted. I think this will help u.
Nov 27 '10 #21

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

Similar topics

7
by: David Berry | last post by:
I'm trying to use a recordset inside of a function but I'm getting an "object required 'adoRS" error. At the top of the page I create my recordset, ex: dim strConnection, adoCN, adoRS, strSQL...
8
by: dmiller23462 | last post by:
My brain is nuked....Can anybody tell me right off the bat what is wrong with this code? Along with any glaring errors, please let me know the syntax to display a message (Response.Write would be...
6
by: Alan Silver | last post by:
Hello, I have an ASP that takes a connection string and SQL statement in the querystring and is supposed to return the XML representation of the recordset to the Response stream (don't worry,...
5
by: Simone | last post by:
Hello I hope you guys can help me. I am very new to ADO... I am creating a ADODB connection in a module and trying to access it from a command button in a form. Function fxEIDAssgn(plngEID As...
4
by: Gerry Abbott | last post by:
Hi all. I wish to call a recordset from a function. Ive tried the following approach, -------------------------------------------------------- Function PassRS() As Recordset Dim db As...
2
by: ano1optimist | last post by:
I have a form with a search button. I'm using command parameters to pass search criteria to a stored procedure. Here is my code: Stored procedure: CREATE PROCEDURE . @strCriteria varchar(200)...
3
by: Nathan Bloomfield | last post by:
Hi there, I am having difficulty with a piece of code which would work wonders for my application if only the error trapping worked properly. Basically, it works as follows: - adds records...
7
by: marmottedodue | last post by:
Hello, I'm trying to debug an access project in which two kind of recordset are used: ADODB.recordset and DAO.recordset. I'm trying to set the whole project on DAO.recordset, but the following...
2
by: technocraze | last post by:
Hi guys, I have encountered this error when updating the values to the MS Acess table. Error : Update on linked table failed. ODBC sql server error Timeout expired. MS Acess is my front end and...
2
by: wallconor | last post by:
Hi, I am having a problem using Dreamweaver CS3 standard recordset paging behavior. It doesn’t seem to work when I pass parameter values from a FORM on my search page, to the recordset on my...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.