I am having trouble starting a program called Multi-Batch 6.0 which use to work fine till I did a windows update, now I get an error message

Error number 3633 in routine db_connect
Can't load msjter35.dll

Does anybody out there have any suggestion? :sad:

Dani AI

Generated

Quick primer: error 3633 (Can’t load MSJTER35.DLL) usually means the app depends on the old Microsoft Jet 3.5/DAO 3.5 stack and Windows can’t locate one of its files. MSJTER35.DLL itself is the Jet error library; if it’s missing or the loader can’t find it, startup fails. The loader looks first in the app’s folder, then system folders, so simply having the DLL beside the EXE can satisfy the dependency. (freefixer.com)

Practical fixes that don’t rely on dead links (building on ’s point that this is a DAO/Jet issue and ’s follow‑ups):

  • Reinstall or repair the app so it lays down Jet 3.5 files, then register DAO (not MSJTER35.DLL). On 64‑bit Windows, use the 32‑bit regsvr32:

    C:\Windows\SysWOW64\regsvr32.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\DAO\dao350.dll"

    On 32‑bit Windows:

    regsvr32 "C:\Program Files\Common Files\Microsoft Shared\DAO\dao350.dll"

    Regsvr32 registers COM servers; trying it on MSJTER35.DLL typically throws “entry‑point not found,” which is expected. (learn.microsoft.com)

  • If the file exists but still won’t load, drop a copy next to the EXE. That works because of the Windows DLL search order. (learn.microsoft.com)

Notes for newer systems and ’s Scheduled Tasks case:

  • Jet/DAO is 32‑bit only. Your program (and any scheduler host) must run 32‑bit on x64 Windows 7/10/11. (learn.microsoft.com)
  • If it runs by hand but not from Task Scheduler, set the Action’s “Start in (optional)” to the app’s folder so dependencies resolve correctly. (stackoverflow.com)

Security tip: avoid downloading random DLLs from the web. Use the original installer or a trusted vendor package; DLL side‑loading risks are real. (support.microsoft.com)

Recommended Answers

All 13 Replies

Solution to: Run-time error '3633': Can't load DLL: MSJTER35.DLL

Please download the fix and run the executable contained within this zipped file


:cool:

Thanks, It Worked

I am having trouble starting a program called Multi-Batch 6.0 which use to work fine till I did a windows update, now I get an error message

Error number 3633 in routine db_connect
Can't load msjter35.dll

Does anybody out there have any suggestion? :sad:

:sad: :sad: :sad:
Same here...
I also received an error 3633
Did you solve the Problem? If "Yes" please send me your solution
Thanks..........:-|

:sad: :sad: :sad:
Same here...
I also received an error 3633
Did you solve the Problem? If "Yes" please send me your solution
Thanks..........:-|

Did you download the fix in post #2

I also received an error 3633
Did you solve the Problem? If "Yes" please send me your solution
Thanks..........:-|

I also received an error 3633
Did you solve the Problem? If "Yes" please send me your solution
Thanks..........:-|

same question for you ,as i asked previous poster .
Did you download the fix in post #2

I am having the same problem : run-time error '3633', Can't load DLL:MSJTER35.DLL
I'm trying to dowload the fix in post 2 but the link is not working.
I hope you can help me. :sad:

I have an application in VB6.0 for data capture from a hardware device. I have installed in in Win2003 server. It works well when i execute it from my application path. But when i put it in windows schedule tasks/call from oracle application, it given me error cannot load msjter35.dll.

Can any body help me out in this???

hello guys, but does the procedure above work properly with windows7? I had the same problem and I would like to know if downloading this file will help me to install a program I've got.

thanks and regards to all

I seriously doubt it as this thread is over 4 years old.

and the link no longer works, so there is no file

hi, the link in post 2 is no longer here, any ideas?
thx

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.