473,385 Members | 1,766 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,385 software developers and data experts.

What the hell is this: run-time error '-2146500594 (800f000e)'

NB
Hi

In my 2 years with Access I have never seen this, now it makes me mad

In an unbound form frmTH I have a frmList which is a continous form
In its on current event, I synch 4 of its fields with 4 unbound
textboxes on the parent form

Me.parent!txtLink1 = Me!field1
Me.parent!txtLink2 = Me!field2

I've been doing this for ages with many apps

And here comes the f***ing error when I run the form:

run-time error '-2146500594 (800f000e)':
Method 'Parent' of object '_Form_frmTHList' failed

I created a totally new unbound form frmTH with the unbound textboxes,
a new frmList and it still comes. I compact and repair the mdb, it's
still there.
I created a blank mdb and import all object into it: import process is
smooth, no error. And the damn error is there.

I even synch using these in the on current event
Forms!frmTH!txtLink1 = Me!field1
Forms!frmTH!txtLink2 = Me!field2
......

and it becomes:
run-time error '-2146500594 (800f000e)':
Method 'Item' of object 'Forms' failed

Other apps with the same synching mechanism still run fine on my PC
(Win XP, Access 2002).

Any suggestion? work-around to synch a continuous subform with other
subform not using the oncurrent event method?

Thks very much
NB
Nov 12 '05 #1
5 8190
As you have probably experienced, there are many times when Access fails to
report a meaningful error message for a simple problem, and this is probably
one of them. I'm thinking either the control is bound to a misspelled field
name or you calling the code from somewhere prior to when the form's
recordsource has been fully initialized (a frequent problem in OnCurrent
handlers).

On 29 Dec 2003 03:24:39 -0800, ni******@lycos.com (NB) wrote:
Hi

In my 2 years with Access I have never seen this, now it makes me mad

In an unbound form frmTH I have a frmList which is a continous form
In its on current event, I synch 4 of its fields with 4 unbound
textboxes on the parent form

Me.parent!txtLink1 = Me!field1
Me.parent!txtLink2 = Me!field2

I've been doing this for ages with many apps

And here comes the f***ing error when I run the form:

run-time error '-2146500594 (800f000e)':
Method 'Parent' of object '_Form_frmTHList' failed

I created a totally new unbound form frmTH with the unbound textboxes,
a new frmList and it still comes. I compact and repair the mdb, it's
still there.
I created a blank mdb and import all object into it: import process is
smooth, no error. And the damn error is there.

I even synch using these in the on current event
Forms!frmTH!txtLink1 = Me!field1
Forms!frmTH!txtLink2 = Me!field2
.....

and it becomes:
run-time error '-2146500594 (800f000e)':
Method 'Item' of object 'Forms' failed

Other apps with the same synching mechanism still run fine on my PC
(Win XP, Access 2002).

Any suggestion? work-around to synch a continuous subform with other
subform not using the oncurrent event method?

Thks very much
NB


Nov 12 '05 #2
On 29 Dec 2003 03:24:39 -0800, ni******@lycos.com (NB) wrote:

Check your references. Is one missing or out of order?
-Tom.
Hi

In my 2 years with Access I have never seen this, now it makes me mad

In an unbound form frmTH I have a frmList which is a continous form
In its on current event, I synch 4 of its fields with 4 unbound
textboxes on the parent form

Me.parent!txtLink1 = Me!field1
Me.parent!txtLink2 = Me!field2

I've been doing this for ages with many apps

And here comes the f***ing error when I run the form:

run-time error '-2146500594 (800f000e)':
Method 'Parent' of object '_Form_frmTHList' failed

I created a totally new unbound form frmTH with the unbound textboxes,
a new frmList and it still comes. I compact and repair the mdb, it's
still there.
I created a blank mdb and import all object into it: import process is
smooth, no error. And the damn error is there.

I even synch using these in the on current event
Forms!frmTH!txtLink1 = Me!field1
Forms!frmTH!txtLink2 = Me!field2
.....

and it becomes:
run-time error '-2146500594 (800f000e)':
Method 'Item' of object 'Forms' failed

Other apps with the same synching mechanism still run fine on my PC
(Win XP, Access 2002).

Any suggestion? work-around to synch a continuous subform with other
subform not using the oncurrent event method?

Thks very much
NB


Nov 12 '05 #3
NB
I forgot to mention 1 important detail

All the synching worked perfectly normal (hence your suggestions are
all wrong)
until I put some code on the On Exit event of the control that holds
the continuous list subform, or on the On Enter event of another
subform on the same form

If I revert the form to the stage before adding those On Enter and On
Exit events then everything is fine

If I save the form, then remove the OnEnter and On Exit event codes:
the damn error persists and I have to create a new form.

So....
This is very mysterious, and no explanation found yet

I have to accept this, and managed to find a workaround that
accomplish what I want without the On Enter and On Exit events

Thks guys for trying anyway

NB
Nov 12 '05 #4
I too have recently suffered this error using Access2000 (both SR-1 and
SP3). I haven't yet found the cause or cure, but can contribute some
additional details that may help someone.
The difference with my system is that the error occurred on a system
that has been working perfectly well since 16 Dec 03. Then suddenly on
8th Jan 04 having been in use for 6 hours that day, the user clicked on
the button on my main menu form, that opens another form with several
subforms, and the error occurred. But this button has been clicked
successfully dozens of times in exactly the same circumstances since the
program was released on 16 Dec. Now it crashes every time.
My system consists of two DBs, one containing all the forms and code
which is linked to the other containing all the data tables.
I copied my development version of the forms & Code program (which has
had no changes since 16 Dec)across to live and it work OK.
So from this we can deduce that the error can occur in a previously
working program without any changes to forms or code.
As the error occurs in the Form_Current of the subform, it probably is a
timing issue relating to the forms not completing their initialisation
before the code executes, as suggested by someone else. What I can't
explain is why it has suddenly changed and now consistently crashes.

LesM

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #5
Les, Have you figured out what was causing the problem?
I am working on a database which consists, basically, of a form with
many subforms. Through the use of buttons, I turn the subforms
visible/invisible and do all the processing I need.
I was modifying the design of one of the sub-forms (height/width), and
when I tried to open the container in normal vie, I got this freaking
error you mentioned, except that the message reads:
Method 'Item' of object 'Forms' failed
Any ideas??
Thanks!!
Nov 12 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: lem | last post by:
under solaris: # make Making all in src Making all in engine make: Fatal error in reader: Makefile, line 453: Badly formed macro assignment Current working directory...
0
by: Jamey | last post by:
I perused old posts for an answer to this for at least an hour, and I've found a work-around, but no definitive answer. Synopsis of the problem: On NotInList or ctl.Requery commands where a...
7
by: Yongsub Eric Shin | last post by:
Hi. I'm just a beginner in ASP.Net. I started writing codes and I keep on getting this Runtime Error page, where it says "Description: An application error occurred on the server. The current...
7
by: yuanlinjiang | last post by:
I am working on converting a win32 console application from VC6 to VC7. My version is Microsoft Development Environment 2003 version 7.1.3088. The code works fine on VC6. it is a console...
8
by: 2bitmarksman | last post by:
I'm not sure if this belongs here or not, but everytime my moms computer tries to access sites, there are random debugging messages saying that there is a Runtime error in the Script that keeps...
1
by: David C. Barber | last post by:
Asking again, I've just built my first Setup-Installable VB 2005 package. I have the full Profession Edition VS 2005, not the Express edition, and am patched to the current SP. It installs on...
0
by: =?UTF-8?B?SXbDoW4gU8OhbmNoZXogT3J0ZWdh?= | last post by:
Harris Kosmidhs wrote: It means "no error". When checking for errors using PDO, compare the $pdo->errorCode() to the string '00000'; other methods may prove unreliable (such as checking for...
0
by: itxharsh | last post by:
/*When i run the program i get a run time error Your code has stopped its execution with a non-zero (failure) exit value.This is generally due to run time Exceptions like Memory Access Violation and...
1
by: maurak | last post by:
Often when I am typing a private message on facebook and i have been typing for a while this "runtime error" happens and closes my program. The message that comes up is titled: Microsoft Visual C...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...

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.