http://bugs.winehq.org/show_bug.cgi?id=14252
Summary: Windows Live Messenger 8.1 just show a blue box
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=d78f2ff1-79ea-4066-8ba0-ddbed94864fc&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
After installing Messenger 8.1, when you open the main window you only see a
blue box. In the console you can see these three lines related to gdiplus.
fixme:gdiplus:GdipImageGetFrameCount not implemented
fixme:gdiplus:GdipImageGetFrameDimensionsList not implemented
fixme:gdiplus:GdipImageSelectActiveFrame not implemented
After install native gdiplus using winetricks the window will appear correctly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27920
Summary: ComboBoxEx doesn't process WM_ENABLE properly
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lightning_uk(a)imgburn.com
Created an attachment (id=35721)
--> (http://bugs.winehq.org/attachment.cgi?id=35721)
Test / Demo App
Unlike ComboBox, ComboBoxEx doesn't appear to process WM_ENABLE properly.
Its 'look' never changes from the initial one - be that enabled or disabled.
So if it's disabled when created, it'll stay looking disabled even after you've
enabled it. If it's enabled when created, it'll stay looking enabled even after
you've disabled it.
If disabled when created, you can't interact with it (get it to drop down etc)
even when you've supposedly enabled it.
The above can be fixed by handling WM_ENABLE in COMBOEX_WindowProc.
Something like the following does the trick (idea taken from combo.c)...
case WM_ENABLE:
if( infoPtr->hwndEdit )
EnableWindow( infoPtr->hwndEdit, (BOOL)wParam );
EnableWindow( infoPtr->hwndCombo, (BOOL)wParam );
/* Force the control to repaint when the enabled state changes. */
InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
return TRUE;
Once that has been added, you see another problem with the control...
When disabled, it doesn't draw the contents of the combobox - compared to
Windows (Vista/7 anyway), that's wrong.
Windows greys the control (drop down arrow etc) out but the image+text remain
visible and 'normal' colour.
That can be fixed by commenting out the following line in COMBOEX_DrawItem
if (!IsWindowEnabled(infoPtr->hwndCombo)) return 0;
I've added a demo app attachment that shows the problem with ComboBoxEx. You
should notice that if you press the 'Enable' button before the 'Show' button,
the ComboBoxEx control looks and behaves differently to if you press 'Show' and
then 'Enable'.
There's a traditional ComboBox on the form too just for comparison.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15650
Summary: Wine crashes if it is built with -fomit-frame-pointer
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amorozov(a)etersoft.ru
Created an attachment (id=16709)
--> (http://bugs.winehq.org/attachment.cgi?id=16709)
WINEDEBUG=+winedevice ./wine winecfg
If wine is built with
CFLAGS=-fomit-frame-pointer ./configure
then it crashes.
$ gcc --version
i586-alt-linux-gcc (GCC) 4.1.2 20070626 (ALT Linux, build 4.1.2-alt3)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14384
Summary: Can not install MSDN - installer crashes
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thesource(a)mail.ru
Created an attachment (id=14685)
--> (http://bugs.winehq.org/attachment.cgi?id=14685)
MSDN setup log
I can't install MSDN for Visual Studio 2005. Installer crashes after I press
Next on the screen where you choose Full or Custom installation. Log is
attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14639
Summary: ngen.exe from .NET 2.0 show exception E_INVALIDARG when
trying to compile an assembly
Product: Wine
Version: 1.1.2
Platform: Other
OS/Version: other
Status: NEW
Keywords: dotnet
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
Created an attachment (id=15047)
--> (http://bugs.winehq.org/attachment.cgi?id=15047)
oleaut32 patch
To reproduce:
wine ngen asiduvaoisduvbaios
The expected behaviour is HRESULT 0x80070002 (file not found), while we get
E_INVALIDARG. The E_INVALIDARD is because of some garbage provided to
SetPriorityClass.
There is a bug in either oleaut32's serialize_param or deserialize_param -
serialize_param treats VT_USERDEFINED/TKIND_RECORD as inline data, while
deserialize_param makes of it a pointer to an allocated buffer. As the VT_PTR
is absent, I would except the first is correct (also it seems this is what ngen
is expecting). The attached patch makes the class sent to SetPriorityClass
constant - always 0xffffffff.
This is still incorrect. The native SetPriotityClass ignores incorrect flags,
so maybe we should just return TRUE, but it could be another bug e.g. in
oleaut32.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11494
Summary: The Install does not work, acts like it finises though
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
URL: http://www.speedproject.de/enu/speedcommander/index.html
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tn(a)chambers.no-ip.info
Created an attachment (id=10648)
--> (http://bugs.winehq.org/attachment.cgi?id=10648)
First screen
I don't know if it's because of the installer it uses, but take a look through
the pictures and you can see that it doesn't install into the correct
directory, and at the end of the install you only get an uninstall.exe in the
Default folder. By the way, the Default install path for this program is
Program files/SpeedProject/SpeedCommander 12/ instead of this wierd Program
Files/Default. I have tried manually changing the install directory to the
correct one but it never copies the correct file into the folder. I have
attached all pics from the install process for reference. Not sure if this
install is tied to the bug from 11490. Thank you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9870
Summary: WINE not reading Multiple Sound Devices correctly,
ignoring ALSA setup
Product: Wine
Version: 0.9.41.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jim(a)1-6regulars.homeip.net
Ubuntu 7.04 Gnome setup to use ALSA sound with CA0106 (SB Audigy PCI card).
Motherboard has VIA Sound on board, disabled in BIOS. ALSA default set to use
CA0106 and is working well in Gnome. WINE Audio Setup is configured to use
ALSA. Wave Out Devices list VIA 8237, but not CA0106. Running WINE Apps have
sound coming out of Disabled VIA device and not the CA0106. ALSA is the only
enabled sound option.
OSS Option lists C-Media Electronics CMI9761A+, which I believe is normally the
driver for many on board audio chip sets like the VIA set. With OSS Selected
as the only sound option, apps in WINE also have sound coming out of the
disabled VIA device and not the CA0106 device.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15976
Summary: MS Exchange 2007 fails to install.
Product: Wine
Version: 1.1.8
Platform: Other
URL: http://technet.microsoft.com/en-
us/exchange/bb330851.aspx
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Created an attachment (id=17166)
--> (http://bugs.winehq.org/attachment.cgi?id=17166)
WINEDEBUG=all
The setup fails to install and gives no error of failure.
Attached is a log of WINEDEBUG=all
I have tried to
set Wine to win2003 or win2008
install dotnet 1.1 and 2.0 and overriding mscoree.dll
Still with no luck.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13737
Summary: Word 2003 crashes on opening specific file
Product: Wine
Version: 1.0-rc3
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sander(a)vermin.nl
Created an attachment (id=13768)
--> (http://bugs.winehq.org/attachment.cgi?id=13768)
The file that crashes word
With loads off versions before and the last one, word 2003 crashes on opening
the file in the attachment.
I have more of these files containing the same template, the all crash.
On multiple systems it has the same result. (works in windows word)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12902
Summary: IHP Kitchen: Unhandled page fault on read access when
starting
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.ikea.com/ms/en_CA/rooms_ideas/kitchen/IHP_Kit
chen.EXE
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 4935
Created an attachment (id=12606)
--> (http://bugs.winehq.org/attachment.cgi?id=12606)
+relay,+seh,+tid log in git, bzip2 -9'ed
IKEA Kitchen Planner crashes on startup. This is a regression, though not sure
when it started...I'll try to run a regression test. +relay,+seh,+tid attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.