Trying to run a Visual Basic application

Questions about Wine on Linux
Locked
Virum
Level 1
Level 1
Posts: 9
Joined: Fri Feb 22, 2013 9:38 am

Trying to run a Visual Basic application

Post by Virum »

Im getting some errors i've never run into before

Code: Select all

err:mscoree:LoadLibraryShim error reading registry key for installroot
protocol "IP" not found; You might want to add this to /etc/protocols
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:win:FlashWindowEx 0x33f420
I added a protocol for this application in my /etc/protocols

Code: Select all

myVBApp         3822 myVBapp
With no change.
User avatar
dimesio
Moderator
Moderator
Posts: 13202
Joined: Tue Mar 25, 2008 10:30 pm

Re: Trying to run a Visual Basic application

Post by dimesio »

The message says what's missing is the protocol "IP"; that's what you need to add to /etc/protocols.
Virum
Level 1
Level 1
Posts: 9
Joined: Fri Feb 22, 2013 9:38 am

Re: Trying to run a Visual Basic application

Post by Virum »

Yes. I did fix that right after i made the post.

Code: Select all

IP 0 IP
I still have the other 2 errors though. I cant seem to find much on google about it.
Locked