http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #3 from Antonino Arcidiaco antonino@arcidiaco.com 2008-05-25 14:54:17 --- (In reply to comment #2)
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; }
Thanks Louis! With your trick now the Incomedia installation work fine, I've the retail software and confirm the error messageboxes pops up, but this is the least problem, fact the principal is that when the program is running is impossible to select the main window, then the mouse click on the window doesn't have output...
think i should set this bug as fixed and open a new?