MSVBVM60.DLL

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Sordelka
Level 1
Level 1
Posts: 7
Joined: Mon May 26, 2008 8:06 am

MSVBVM60.DLL

Post by Sordelka »

Hey, my friend made a scheduling program for my university's program (tried to make it sound good). THe problem is, when I try to launch it, it gives me this:

Code: Select all

err:module:import_dll Library MSVBVM60.DLL (which is needed by L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe" failed, status c0000135
What do I do?
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

MSVBVM60.DLL

Post by austin987 »

On Mon, Jan 5, 2009 at 9:53 AM, Sordelka <[email protected]> wrote:
Hey, my friend made a scheduling program for my university's program (tried to make it sound good). THe problem is, when I try to launch it, it gives me this:


Code:
err:module:import_dll Library MSVBVM60.DLL (which is needed by L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe" failed, status c0000135




What do I do?





He should've bundled visual basic runtimes with it. But since he didn't:
$ wget kegel.com/wine/winetricks
$ sh winetricks vb6run


--
-Austin
John Drescher

MSVBVM60.DLL

Post by John Drescher »

On Mon, Jan 5, 2009 at 10:53 AM, Sordelka <[email protected]> wrote:
Hey, my friend made a scheduling program for my university's program (tried to make it sound good). THe problem is, when I try to launch it, it gives me this:


Code:
err:module:import_dll Library MSVBVM60.DLL (which is needed by L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\home\\sordelka\\Desktop\\DMD_Calendrier.exe" failed, status c0000135




What do I do?
http://wiki.winehq.org/winetricks

winetricks vb6run

John
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Post by DanKegel »

quick answer: winetricks vb6run

The FAQ says:

http://wiki.winehq.org/FAQ#head-bb6a7a9 ... 3e5217c3bf

"6.4. My application says some DLL or font is missing. What do I do?

Applications should come with all the DLLs they need (except for core Windows DLLs). They sometimes forget to, and rely on you to already have the DLL or font installed. You can install the missing DLL or font in several ways:

1. downloading them from the original creators of the runtime (eg. Microsoft). The easiest way to do this is with winetricks (see below).
2. installing other applications which do include them
3. copying them from a licensed version of Windows installed on the same machine

! Do not download DLLs or scripts from websites you do not know and trust! Fake or infected DLLs can cause you great pain, even on Wine. "

7.5. What is this "winetricks" thing? Where do I get it?

winetricks is a shell script that downloads missing DLLs and fonts for you from the best known source. It was written to help Wine developers, but it turned out to be useful for end users, too. See the wiki page about winetricks for more info.

http://wiki.winehq.org/winetricks
Sordelka
Level 1
Level 1
Posts: 7
Joined: Mon May 26, 2008 8:06 am

Post by Sordelka »

Thank you a lot. ^^

Still it gives me that MSVBVM60.DLL is missing. However, I did get the vb6 environment with winetricks...

NO wait it works!!!!!!!!!!!!! Yey thank you!
Locked