Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'Cannot find DAO350.dll' file error VB6

After installing VB6 successfully on my Windows 8.1 64bit pc, whenever i am trying to open my .vbp project file it gives me an error can't find DAO350.dll file. Googled for every possible solution but couldn't find one.

enter image description here

Please help me.

[UPDATE]

enter image description here

[UPDATE1]: It looks something like thisenter image description here

like image 978
Steve Avatar asked Dec 09 '14 11:12

Steve


4 Answers

On the Visual Basic 6.0 CD (or whatever your installation source is), locate the Dao350.dll file, and then copy it to the directory C:\Program Files\Microsoft Visual Studio\VB98.

After applying this fix. The Visual Basic 6 can now run successfully on your Computer.

NOTE: The Dao350.dll file is located in the \os\system folder on the Visual Basic 6.0 CD.

like image 172
apexzy Avatar answered Oct 21 '22 22:10

apexzy


The DA0350.dll must be registered. Try this:

On the Visual Basic 6.0 CD (or whatever your installation source is), locate the Dao350.dll file, and then copy it to the directory c:\program files\common files\microsoft shared\DAO. (The Dao350.dll file is located in the \os\system folder on the Visual Basic 6.0 CD.)

To register this file, click Start, click Run, and then type or paste the following line:

Regsvr32 "c:\program files (x86)\common files\microsoft shared\DAO\Dao350.dll"

Update:

The VB6TMPL.TLB is probably not installed for your current user. Try to run Visual Basic as administrator and/or try this: http://support.microsoft.com/kb/262976/en-us

like image 22
Ben Pi Avatar answered Oct 22 '22 00:10

Ben Pi


From the command prompt, execute the following commands:

cd C:\Program Files (x86)\Common Files\Microsoft Shared\DAO
regsvr32 dao350.dll

This should do it.

like image 27
Nothoro Avatar answered Oct 21 '22 22:10

Nothoro


To solve about "Can't find file DAO350.DLL"

  1. Download DAO350.DLL file from https://www.dll-files.com/dao350.dll.html
  2. Extract file DLL, then copy file DAO350.DLL to C:\Program Files (x86)\Microsoft Visual Studio\VB98 or any other place you install VB 6
  3. Try open your VB 6

Work for me.

like image 28
Muhammad Riyantoro Avatar answered Oct 21 '22 23:10

Muhammad Riyantoro