please help me.
im wrting a program using visual basic 6.0 and using ms access as data base.
when it ry to execute the program. and try to save record in database using adodc the system prompt me :
"Operation Cancelled" runtime error 2147217842(80040e4e)
i dont understand it and im sure that my coding is correct because it actually works smoothly for about 6 to 10 exucution or more and just encounter this problem for the first time
what shall i do.
please help me huhuhu :(
10 9933
please help me.
im wrting a program using visual basic 6.0 and using ms access as data base.
when it ry to execute the program. and try to save record in database using adodc the system prompt me :
"Operation Cancelled" runtime error 2147217842(80040e4e)
i dont understand it and im sure that my coding is correct because it actually works smoothly for about 6 to 10 exucution or more and just encounter this problem for the first time
what shall i do.
please help me huhuhu :(
Post the code. We cannot possibly attempt a solution without seeing it.
Post the code. We cannot possibly attempt a solution without seeing it.
-
Private Sub saves_Click()
-
-
If act = 3 And cond = 1 Then
-
MsgBox "The record's identification code has been modified. System failed to update.", vbCritical, label
-
epis.Recordset.CancelUpdate: epis.Recordset.MoveFirst: educ.Recordset.MoveFirst: family.Recordset.MoveFirst
-
End If
-
-
If act = 2 And cond = 1 Then
-
ans = MsgBox("Are you sure you want to save this record?", vbYesNo, label)
-
-
If ans = vbYes Then
-
3: educ.Recordset.MoveFirst: family.Recordset.MoveFirst: epis.Recordset.MoveFirst
-
MsgBox "You succesfully save the data", vbOKOnly, label: txt_no(0).Visible = True
-
Else: GoTo 4
-
End If
-
-
ElseIf act = 2 And cond = 0 Then
-
ansr = MsgBox("The employee you enter already exist. Would you like the record to display?", vbYesNo, label)
-
-
If ansr = vbYes Then
-
act = 0: ans = txt_no(0).Text: epis.Recordset.CancelUpdate: educ.Recordset.CancelUpdate: family.Recordset.CancelUpdate: flag = False: saves.Enabled = flag: initialization: search
-
Else
-
epis.Recordset.CancelUpdate: educ.Recordset.CancelUpdate: family.Recordset.CancelUpdate
-
Exit Sub
-
End If
-
-
End If
-
act = Empty: acts = Empty: Form_Load
-
4:
-
End Sub
I dont put the other codes thats were the problem generates during run time
im using visual basic 6. 0
ms access 2003
thanx.
-
Private Sub saves_Click()
-
-
If act = 3 And cond = 1 Then
-
MsgBox "The record's identification code has been modified. System failed to update.", vbCritical, label
-
epis.Recordset.CancelUpdate: epis.Recordset.MoveFirst: educ.Recordset.MoveFirst: family.Recordset.MoveFirst
-
End If
-
-
If act = 2 And cond = 1 Then
-
ans = MsgBox("Are you sure you want to save this record?", vbYesNo, label)
-
-
If ans = vbYes Then
-
3: educ.Recordset.MoveFirst: family.Recordset.MoveFirst: epis.Recordset.MoveFirst
-
MsgBox "You succesfully save the data", vbOKOnly, label: txt_no(0).Visible = True
-
Else: GoTo 4
-
End If
-
-
ElseIf act = 2 And cond = 0 Then
-
ansr = MsgBox("The employee you enter already exist. Would you like the record to display?", vbYesNo, label)
-
-
If ansr = vbYes Then
-
act = 0: ans = txt_no(0).Text: epis.Recordset.CancelUpdate: educ.Recordset.CancelUpdate: family.Recordset.CancelUpdate: flag = False: saves.Enabled = flag: initialization: search
-
Else
-
epis.Recordset.CancelUpdate: educ.Recordset.CancelUpdate: family.Recordset.CancelUpdate
-
Exit Sub
-
End If
-
-
End If
-
act = Empty: acts = Empty: Form_Load
-
4:
-
End Sub
I must admit that I am having a little trouble following the Logic and Syntax of your code. This is only a suggestion, but before I do anything else, I woould write the code in a more logical, though longer, format: - Select Case act
-
Case 2
-
Select Case cond
-
Case 0
-
ansr = MsgBox("The employee you enter already exist. Would you like the record to display?", vbYesNo, Label)
-
If ansr = vbYes Then
-
act = 0
-
ans = txt_no(0).Text
-
epis.Recordset.CancelUpdate
-
educ.Recordset.CancelUpdate
-
family.Recordset.CancelUpdate
-
flag = False
-
saves.Enabled = flag
-
initialization
-
search
-
Else
-
epis.Recordset.CancelUpdate
-
educ.Recordset.CancelUpdate
-
family.Recordset.CancelUpdate
-
Exit Sub
-
End If
-
Case 1
-
ans = MsgBox("Are you sure you want to save this record?", vbYesNo, Label)
-
If ans = vbYes Then
-
educ.Recordset.MoveFirst
-
family.Recordset.MoveFirst
-
epis.Recordset.MoveFirst
-
MsgBox "You succesfully save the data", vbOKOnly, Label
-
txt_no(0).Visible = True
-
Else
-
GoTo 4
-
End If
-
Case Else
-
'act = 2 and cond <> 0 or 1
-
End Select
-
Case 3
-
If cond = 1 Then
-
MsgBox "The record's identification code has been modified. System failed to update.", vbCritical, Label
-
epis.Recordset.CancelUpdate
-
epis.Recordset.MoveFirst
-
educ.Recordset.MoveFirst
-
family.Recordset.MoveFirst
-
Else
-
'act = 3 and cond <> 1
-
End If
-
Case Else
-
'act <> 2 or 3
-
End Select
-
-
act = Empty
-
acts = Empty
-
Form_Load
-
-
4:
I must admit that I am having a little trouble following the Logic and Syntax of your code. This is only a suggestion, but before I do anything else, I woould write the code in a more logical, though longer, format: - Select Case act
-
Case 2
-
Select Case cond
-
Case 0
-
ansr = MsgBox("The employee you enter already exist. Would you like the record to display?", vbYesNo, Label)
-
If ansr = vbYes Then
-
act = 0
-
ans = txt_no(0).Text
-
epis.Recordset.CancelUpdate
-
educ.Recordset.CancelUpdate
-
family.Recordset.CancelUpdate
-
flag = False
-
saves.Enabled = flag
-
initialization
-
search
-
Else
-
epis.Recordset.CancelUpdate
-
educ.Recordset.CancelUpdate
-
family.Recordset.CancelUpdate
-
Exit Sub
-
End If
-
Case 1
-
ans = MsgBox("Are you sure you want to save this record?", vbYesNo, Label)
-
If ans = vbYes Then
-
educ.Recordset.MoveFirst
-
family.Recordset.MoveFirst
-
epis.Recordset.MoveFirst
-
MsgBox "You succesfully save the data", vbOKOnly, Label
-
txt_no(0).Visible = True
-
Else
-
GoTo 4
-
End If
-
Case Else
-
'act = 2 and cond <> 0 or 1
-
End Select
-
Case 3
-
If cond = 1 Then
-
MsgBox "The record's identification code has been modified. System failed to update.", vbCritical, Label
-
epis.Recordset.CancelUpdate
-
epis.Recordset.MoveFirst
-
educ.Recordset.MoveFirst
-
family.Recordset.MoveFirst
-
Else
-
'act = 3 and cond <> 1
-
End If
-
Case Else
-
'act <> 2 or 3
-
End Select
-
-
act = Empty
-
acts = Empty
-
Form_Load
-
-
4:
well I admit reading my code is like walking in a maze :)
im not just familiar in using select case.
thanks for editing it folks.
it stil dont work. i already delete some records(until all of them) in data base to see if there is limitation in saving. I still encountered the the error.
well I admit reading my code is like walking in a maze :)
im not just familiar in using select case.
thanks for editing it folks.
it stil dont work. i already delete some records(until all of them) in data base to see if there is limitation in saving. I still encountered the the error.
Set a Breakpoint on Select Case act then single - step (F8) through the code. This will pinpoint the exact line that is causing the Error which is another reason why I did not place multiple Statements on a single line.
Set a Breakpoint on Select Case act then single - step (F8) through the code. This will pinpoint the exact line that is causing the Error which is another reason why I did not place multiple Statements on a single line.
OK I get it . -
Select Case act=2
-
.
-
.
-
.....Select Case cond=1
-
educ.recordset.movefirst
-
family.recordset.movefirst
-
epis.recordset.movefirst
-
.
-
.
-
end select
-
end select
-
the epis.recordset.movefirst is highlighted when error occured.
all the fields connected to it dont save the data i entered, unlike the educ.recordset and family recordset.
I reply to this thread althought is old, because it's the first goole result in this error and it's kinda frustrating to figure this problem out.
This error happens, amongst other reasons, because the SELECT statement that retrieves the data from the database, does not contain the whole primary key of the table. Somewhy, movefirst, movenext and other methods would fail in this situation, raising this crappy error message.
At least that happened to me, under MySql 5, with MyODBC and VB6 service pack 6.
OK I get it . -
Select Case act=2
-
.
-
.
-
.....Select Case cond=1
-
educ.recordset.movefirst
-
family.recordset.movefirst
-
epis.recordset.movefirst
-
.
-
.
-
end select
-
end select
-
the epis.recordset.movefirst is highlighted when error occured.
all the fields connected to it dont save the data i entered, unlike the educ.recordset and family recordset.
I'm printing all the code and taking it to work with me tomorrow. I'll get back to you on this.
In your code it seems to me that the rs.movefirst command is actually used to update the fields in the database with the new data.
Sugguestions:
Check to see if locktype is read-only
I am having a similar problem in DE and it is only when the locktype is read-only. And it only is happening when i have info placed in a combobox and the movefirst command is called.
???
OK I get it . -
Select Case act=2
-
.
-
.
-
.....Select Case cond=1
-
educ.recordset.movefirst
-
family.recordset.movefirst
-
epis.recordset.movefirst
-
.
-
.
-
end select
-
end select
-
the epis.recordset.movefirst is highlighted when error occured.
all the fields connected to it dont save the data i entered, unlike the educ.recordset and family recordset.
What do epis, educ, and family explicitly refer to? Could there be a chance that the Recordset contains no Records? In that case a MoveFirst would generate an Error.
Sign in to post your reply or Sign up for a free account.
Similar topics
by: sajithkahawatta |
last post by:
i use asp then i got error
Microsoft OLE DB Provider for ODBC Drivers error '80040e4e'
Operation was canceled.
/dbconn.asp, line 5
the...
|
by: thethtwayag |
last post by:
Hi, anyone out there for help. I am writing a program in vb6(sp6) using access as database. The program works well in the project as well as after...
|
by: hussainiyad |
last post by:
Dear ADezii
i,m totlally new for vb 6.0 and i,m doing a invoice project and i,m facing a issue , can you plz tell me solution
i,m trying to...
|
by: hussainiyad |
last post by:
Dear All
i,m totlally new for vb 6.0 and i,m doing a invoice project and i,m facing a issue , can you plz tell me solution
i,m trying to...
|
by: hussainiyad |
last post by:
Dear All,
I,m doing a invoice project and in it i want to create both salesInvoice & purchase order
my Purchaseinvoice table contains...
|
by: hussainiyad |
last post by:
Dear All,
I,m doing a invoice project and in it i want to create both salesInvoice & purchase order
my Purchaseinvoice table contains...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: CD Tom |
last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
| |