Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AppName: msaccess.exe AppVer: 10.0.6501.0

Status
Not open for further replies.

easycode

Programmer
Jan 28, 2005
195
US
Hello all,

I have received many emails of error messages that the group who is using the application i developed in access 2000 is getting.Everything happend since the transition from win2000 to xp

one of the error is: (kind of large text)

---------------------------------------------------------
AppName:msaccess.exe AppVer:10.0.6501.0 ModName:ntdll.dll
ModVer 5.1.2600.2180 Offset: 000118d0

Reporting details........................
This error report includes: information regarding the condition of Microsoft Access when the problem occurred; the operating system version and computer hardware in use; your Digital Product Id, which could be used to identify your license; and the Internet Protocol (IP) address of your computer.

We do not intentionally collect your files, name,address, email or any other form of personally identifiable information. However the error report could contain customer-specific information such as data from open files. While this information could potentially be used to determine your identity , if present, it will not be used.

The data that we collect will only be used to fix the problem. If more information is available, we will tell you when you report the problem. This error report will be sent using a secure connection to a database with limited access and will not be used for marketing purposes.

Close button
---------------------------------------------------------
Other error is the catastrophic failure posted on Friday July 7th.


Other erros is : Microsoft has encountered a problem and needs to close. We are sorry for the inconvenience.

I desperatly need help. I am baffled with all this error messages.

Thank yo'll.

 
When are they getting the errors?

What is the app doing? I think much more information as to when the errors are created need to be posted.

Andy Baldwin

"Testing is the most overlooked programming language on the books!
 
point,
I have run into this before (I still develop mainly in Access 2000 and have clients using Access 2003). I don't how to fix the problem but I can tell you what I've done to get around it.
[ol][li]ADO and DAO don't seem to play well together. In my experience Access adds reference to Microsoft DAO 3.6 object Library by default in A2K. Since I work mostly with ADO recordsets I have removed the reference for DAO. In cases where that's not possible, I make sure the code is fully qualified, i.e. [tt]Dim MyRecordset as Recordset[/tt] becomes [tt]Dim MyRecordset as ADODB.Recordset[/tt] or [tt]Dim MyRecordset as DAO.Recordset[/tt].[/li]
[li]Common functions (sandbox mode): I have also recieved this error with some of the functions that exist in both the VBA and recordset librarys. Most recently [tt]Environ()[/tt]. Once again I had to fully qualify to get these to work, i.e. [tt]Environ()[/tt] becomes [tt]VBA.Environ()[/tt][/li]
[/ol]

Hope this helps,
CMP

[small]For the best results do what I'm thinking, not what I'm saying.[/small]
(GMT-07:00) Mountain Time (US & Canada)
 
the errors are prompted anytime in any menu or any process but mostly when they are typing comments in a memo field, i have something like this:


General
Specific
Evaluation

----------------------------------------------------
this is the area where the users can type comments foe each folder. if user clicks in General this area will be inly for General. each folder above mentioned has its own area of typing. user can type pages of this text because memo fields admits up to 64000 characters.






-----------------------------------------------

Operating System:
Windows XP Professional 2002 Service Pack 2

Software:
Microsoft Access 2002 (10.6501.6735) SP3

i use ADO to open recordsets


if any information is needed, please let me know.

thanks again
 
Thanks for replying guys

CautionMP

I have done point 1, I will double check #2.


just in case this are the references i am using:

-Visual Basic for applications
-Microsoft Access 9.0 Object Library
-Ole Automation
-Microsoft ActiveX Data Objects 2.1 Library
-Microsoft Objects 9.0 Object Library
 
Access 9.0 is Access 2000, not Access 2002 (aka Access XP).

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Here is the difference i have noticed and PHV just mentioned i have developed in microsoft access 2000 v 9.0.6926-SP3 and they users are working under microsft access 2002(XP version 10.6501.6735 SP3). Thanks PHV
 
Usual preliminaries on a crashing PC:
Double check the references:
when in VBE, menu Tools -> References ...
Does the DB compiles properly ?
menu Debug -> Compiles ...

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top