Displaying 9 results from an estimated 9 matches similar to: "DAO 3.5 and OLEAUT32.DLL troubles..."
2003 May 17
2
oleaut32-Error
Hallo,
starting a program under wine (cvs snapshot 16.5.03) I got this error message
and the execution of wine is terminated:
err:module:BUILTIN32_dlopen failed to load .so lib for builtin oleaut32.dll:
/usr/lib/libungif.so.4: undefined symbol: XDestroyImage
err:module:import_dll Loading module (file) oleaut32.dll (which is needed by
C:\Programme\DynaGeo\DynaGeo.exe) failed (error
2003 Apr 09
0
Another Issue (oleaut32.dll -> CreateTypeLib2)
Trying to run an MSAccess Runtime and I get the typical crash and debug..
(PS, WHY can't I copy and paste from the debbugger itself :)
Unhandled exception: unimplemented function oleaut32.dll.CreateTypeLib2 called
in 32-bit code (0x409cb056)
Has this been fixed in a recent version?
--
--
"Catch the Magic of Linux..."
--------------------------------------------------------
2001 Jun 27
1
WinNT and oleaut32.dll
Rein Klazes <rklazes@see.my.sig> wrote:
> Perhaps you have looked in c:\winnt\system?
> Oleaut32.dll is in c:\winnt\system32, this is also the dir that you
> must have configured in your .wine/config.
Oleaut32.dll didn't show on linux using vfat, all other ole-dlls where
visible.
Reinhard
2001 Apr 10
2
Probblem with oleaut32.dll
Hallo
I have a big Problem with oleaut32.dll.
Allways i got the Messages:
"Unimplemented Function oleaut32.OleLoadPictureEx called at address
xy Do you wish to debug it?"
I have tryed to link with
ln -s /windows/D/Windows/System/oleaut32.dll
~/.wine/fake_windows/Windows/System/oleaut32.dll
but no success is there.
I have linking all VB6lib and ocx.
Programms, which don't
2008 Aug 12
3
Multisim: unable to initialize DAO/jet db engine
Hi all,
I have just tired to install Multisim 9 in wine. The program installs but gives an error 'unable to initialize DAO/jet db engine' halfway through. The program runs fine but there are no components in the component database.
Any help would be much appreciated.
Thankyou
2009 Jul 23
1
Re: Multisim: unable to initialize DAO/jet db engine
wine ./Desktop/Jet40SP8_9xNT.exe
fixme:setupapi:extract_cabinet_file awful hack: extracting cabinet "C:\\windows\\temp\\IXP001.TMP\\Jetsetup.CAB"
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program files\\Common files\\Microsoft shared\\dao\\dao2535.tlb" failed with error 2
I install multisim and do all what was write in this topic. But multisim not work. p.s. sorry for
2001 Feb 19
0
DAO install problems
Hi folks,
I am trying to run a german tax application (which sadly enough
is only available for Win). I need the DAO package for that
but run into errors when trying to install it. I get lots of
Popups saying "Couldn't find dll". Also there is a line
in standard error which reads something about importing type libs
not supported.
Is there anything I can do about this or help in
2002 Nov 04
0
DAO 3.5 Support with Wine
Does anyone know how or what to install to get DAO support with Wine using
SuSE Linux 8.0 ? I am trying to run a application that uses Excel Sheets
containing data that is shown in the application, but without DAO it won't
work :(
I'd be happy if someone can give me some hints on how to solve this problem!
-Eddie
---
Eddie Zikeli
Software Development
Hans G?ntner GmbH
Industriestr. 14
2006 Apr 13
3
Java/J2EE DAO/model objects vs. Ruby/Rails model objects
In typical Java/J2EE applications, domain model object do not have much
logic, they are basically data holders. It seems to be considered a sin to
put persistence logic in the domain model objects, instead it should be put
a DAO (Data Access Object). I have always thought this seems funny, after
all, what seems more natural/object-oreiented?:
user.save()
or
userDao.save(user)
In Ruby/Rails,