View Single Post
  #1 (permalink)  
Old 09-22-2009, 09:34 PM
joel2009 joel2009 is offline
Knows the basics
 
Join Date: Jan 2009
Posts: 50
Awards Showcase
Beta Tester 
Total Awards: 1
Default Basic4ppc Wine Project

I really want to get Basic4ppc running in linux, currently with .net installed basic4ppc runs but fails to load/show your source. After debugging, the problem seems to be with ole32.dll (while loading the text box.)

The library file ole32.dll, is required by windows and is used when performing OLE (Object Linking and Embedding) operations . OLE allows objects created in one application to be embedded in documents/objects created by a different applications e.g. embedding an Excel spreadsheet inside a Word document.

Here is the output:
Code:
joel@joel-laptop:~$ env WINEPREFIX="/home/joel/.wine" wine "C:\Program Files\Anywhere Software\Basic4ppc Desktop\Basic4ppc Desktop.exe"
err:ole:CoGetContextToken apartment 
not initialised
fixme:shell:URL_ParseUrl failed 
to parse L"System.Windows.Forms"
fixme:shell:URL_ParseUrl failed 
to parse L"System"
fixme:shell:URL_ParseUrl failed 
to parse L"System.Drawing"
fixme:shell:URL_ParseUrl failed 
to parse L"ActiproSoftware.SyntaxEditor.Net20"
fixme:shell:URL_ParseUrl failed 
to parse L"ActiproSoftware.WinUICore.Net20"
fixme:shell:URL_ParseUrl failed 
to parse L"ActiproSoftware.Shared.Net20"
fixme:win:EnumDisplayDevicesW ((
null),0,0x32d114,0x00000000), stub!
fixme:shell:URL_ParseUrl failed 
to parse L"Dbasic.resources"
fixme:shell:URL_ParseUrl failed 
to parse L"Dbasic.resources"
fixme:shell:URL_ParseUrl failed 
to parse L"System.Deployment"
fixme:shell:URL_ParseUrl failed 
to parse L"System.Xml"
fixme:shell:URL_ParseUrl failed 
to parse L"System.Design"
fixme:imm:ImmReleaseContext ((nil), 
0x1b4890): stub
fixme:shell:URL_ParseUrl failed 
to parse L"ActiproSoftware.WinUICore.Net20.resources"
fixme:shell:URL_ParseUrl failed 
to parse L"ActiproSoftware.WinUICore.Net20.resources"

The output gives an error with CoGetContextToken which is associated with ole32.dll


Replacing the dll with the windows system dll causes wine to crash, so i'm now at a loss for what to do next.
Reply With Quote