Visual Basic 6 app, using excel.

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
mattpixel
Newbie
Newbie
Posts: 1
Joined: Thu May 27, 2010 8:54 am

Visual Basic 6 app, using excel.

Post by mattpixel »

Hi everybody! My name is matt, sorry for my english it's too bad. and i'm tryning to run a visual6 app on lucid(ubuntu) using wine.

Well, my app creates an excel file and write 3 rows in the worksheet4 of this file. In windows the app runs great, but when i try to use in linux with wine the app don't create the excel file and dont show any error.

The message on the terminal is:

Code: Select all

fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x103ae 0x00000000
err:ole:marshal_object object doesn't expose interface {7fd52380-4e07-101b-ae2d-08002b2ec713}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface failed with error 0x80004002
err:ole:marshal_object object doesn't expose interface {37d84f60-42cb-11ce-8135-00aa004bb851}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface failed with error 0x80004002
fixme:reg:GetNativeSystemInfo (0x33fba0) using GetSystemInfo()
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 0/00/0000, dlt (d/m/y): 0/00/0000
I install windows common controls but it doesn't work. I check for: 1)-the folder have permissions for read/write and the folder exits.

Some ideas?

Thanks for you time!!!

Cheers!
qwertymn
Level 4
Level 4
Posts: 236
Joined: Thu Mar 27, 2008 3:42 am

Post by qwertymn »

maybe a bug in wine?

you could try if using native dlls helps. A wild guess:

Do 'winetricks mfc42'

Then run the app by: 'WINEDLLOVERRIDES="oleaut32=n" wine app_name.exe' (or set oleaut32.dll to native in winecfg)
Locked