http://bugs.winehq.org/show_bug.cgi?id=13248
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Keywords| |download, Installer
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-05-25 05:54:21 ---
C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX
-???- Error: 3
That is because the app apparently needs mfc40.dll (and lateron mfc42) Antonio, try following command: 'wget http://kegel.com/wine/winetricks && sh winetricks mfc40 mfc42' then report back please
The demo runs into another bug: a bunch of error messageboxes pops up that files already exist. Does the retail version behave the same? I suspect a bug in kernel32, as it appeared in the debuglog just before the trouble, and the hack below made the installer finish just fine. I can at least confirm the installer has problems
diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index aad260f..95c389c 100644 --- a/dlls/kernel32/path.c +++ b/dlls/kernel32/path.c @@ -1060,7 +1060,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest, NtClose( dest_handle ); if (!(flag & MOVEFILE_REPLACE_EXISTING)) { - SetLastError( ERROR_ALREADY_EXISTS ); + SetLastError(0);// ERROR_ALREADY_EXISTS ); RtlFreeUnicodeString( &nt_name ); goto error; }