Go Back   TechArena Community > Software > Operating Systems
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , ,

Sponsored Links



msjet35.dll Error in office 2000

Operating Systems


Reply
 
Thread Tools Search this Thread
  #1  
Old 29-08-2009
Member
 
Join Date: Feb 2009
Posts: 26
msjet35.dll Error in office 2000

Hello , I have Office 2000 installed in my computer with the msaccess software , the problem is that i get this error message, while watching the Microsoft WebTV or sometimes working on ms access

MSACCESS caused an invalid page fault in module MSJet35.DLL at 0137:040df209

please tell me how to solve these problem , please help me thanks in advance
Reply With Quote
  #2  
Old 29-08-2009
Humberto's Avatar
Member
 
Join Date: Nov 2005
Posts: 1,170
Re: msjet35.dll Error in office 2000

To solve the error, test the existence of the object in the target database and delete it before using TransferDatabase, as in the following example: Create a copy of the sample database Northwind.mdb Northwind2.mdb as amended.

Open the sample database Northwind.mdb amended.
Create a module and type the following procedure:

Code:
Public Function TransferObject (Filename As String, _ 
                                       objType As Integer, _ 
                                       objName As String) 
           On Error GoTo TransferObject_Err 
           Sun accObj As New Access.Application 
           accObj.OpenCurrentDatabase Filename 
           accObj.DoCmd.DeleteObject objType, objName 
           accObj.CloseCurrentDatabase 
           Set accObj = Nothing 
           DoCmd.TransferDatabase acExport, _ 
                                   "Microsoft Access", _ 
                                   Filename, _ 
                                   objType, objName, objName, False 
           MsgBox "Transferred Object:" & objName & _ 
                  'To database file "& Filename, _ 
                  vbInformation, "Test" 
        TransferObject_End: 
           Exit Function 
        TransferObject_Err: 
           MsgBox Err.Description, vbCritical, "Test" 
           Resume TransferObject_End 
        End Function
Save the module as TestXfer and close it.
To test this function, type the following line in the Debug window, and then press ENTER.

Note: Enter the name of the path and file complete Northwind2.mdb as the first parameter of the following function. ? TransferObject ( "Northwind2.mdb" acForm, "Orders")

Quote:
? TransferObject ( "Northwind2.mdb" acForm, "Orders")
Note that when the transfer is complete, the message:
Subject transferred: commands to the database file Northwind2.mdb
Reply With Quote
  #3  
Old 29-08-2009
Lillebror's Avatar
Member
 
Join Date: Apr 2008
Posts: 3,259
Re: msjet35.dll Error in office 2000

Msjet35.dll is the main component of the engine database of Microsoft Jet, which evaluates and carries out requests for data. The treatment of file reading and saving data to databases of Microsoft Access. For non-native data, then the file makes calls to the DLL Manager ODBC manager or one of the external installable ISAM DLLs.
Reply With Quote
  #4  
Old 29-08-2009
MrChris-'s Avatar
Member
 
Join Date: Apr 2008
Posts: 3,237
Re: msjet35.dll Error in office 2000

The Microsoft WebTV for Windows executable TVX, Tvx.exe may cause page fault in module invalid Msjet35.dll watching WebTV. The audio continues after TVX fails, but WebTV is not functional until you restart the computer.This problem occurs if your processor has a processor of 500 megahertz (MHz) Advanced Micro Devices (AMD). Restart your computer to continue using WebTV.
Reply With Quote
Reply

  TechArena Community > Software > Operating Systems


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "msjet35.dll Error in office 2000"
Thread Thread Starter Forum Replies Last Post
reinstall Office 2000 but cannot update, error:the update program did not locate the expected version of MS office in this computer simonw1322 Office Update Service 6 29-09-2009 01:03 AM
Error while installing Office 2000 on Vista Rudyroo101 MS Office Support 0 16-01-2008 08:02 PM
How do I uninstall Office 2000 and install Office Pro 2000 MEB TroubleShoot 98 6 20-01-2007 04:11 PM
uninstall office 2000-- 'error 1706' orcadianborn Office Setup 2 05-11-2006 06:10 PM
Access 2000 with Office 2003 and office assistant character error Jim Bud MS Office Support 3 28-07-2005 11:50 PM


All times are GMT +5.5. The time now is 11:52 PM.