http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #6 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 11:34:43 --- Created an attachment (id=10828) --> (http://bugs.winehq.org/attachment.cgi?id=10828) GUI
Right, this is how far i got with the app, the GUI is up and running, but the main window doesn't refresh. However, it might be a problem with my graphics card, as i got a scaring "err:iPixelFormat=0" in my console.
Anyway, what i did is _first_ install .net 2.0. Then the installer runs apparently into a bug in msi. I used stupid hack below to let the installer finish. Then using the howto for .net apps ( http://appdb.winehq.org/objectManager.php?sClass=version&iId=3754&iT... ) i started the application. Then it ran into a bug into comctl32. Using native comctl32 (and riched20 for another issue) the main window came up. Needs more testing (and preferably by someone who knows how the application works)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 2efcbbb..60cf475 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -845,9 +845,9 @@ static UINT ITERATE_Actions(MSIRECORD *row, LPVOID param) if (rc == ERROR_FUNCTION_NOT_CALLED) rc = ERROR_SUCCESS;
- if (rc != ERROR_SUCCESS) + if (rc != ERROR_SUCCESS) {rc = ERROR_SUCCESS; ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); - +} return rc; }