http://bugs.winehq.org/show_bug.cgi?id=33454
Bug #: 33454
Summary: Webbrowser "designmode on" doesn't work properly
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
Created attachment 44284
--> http://bugs.winehq.org/attachment.cgi?id=44284
Sample source
http://netikka.net/dev/designmode.exe
Click "Designmode on". -> It clears all existing text.
Terminal: err:mshtml:update_window_doc SetDesignMode failed: 80004003
--
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=34438
Bug #: 34438
Summary: Rexroth Symbol Modeling Tool fails to start
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 45845
--> http://bugs.winehq.org/attachment.cgi?id=45845
Terminal output on wine-1.7.0-346-g1bf936c
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet40 corefonts
3) install D&C Scheme Editor 5
4) wine "Rexroth Symbol Modeling Tool.exe"
Behaviour:
Nothing happens.
Expected behaviour:
Symbol Modeling Tool should start.
Additional info:
Rexroth Symbol Modeling Tool is part of D&C Scheme Editor 5 (URL attached in
header of this bug)
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38878
Bug ID: 38878
Summary: olepropframe.c (OleCreatePropertyFrame) is missing the
apply code
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
Assignee: wine-bugs(a)winehq.org
Reporter: jasonwinter(a)hotmail.com
Distribution: ---
The window proc: property_sheet_proc currently only handles 2 messages,
initdialog & destroy, however most DirectX property sheets require the apply
logic to save changes (even though realtime changes can be seen, they are
backed out when the dialog is closed if apply isn't executed).
To resolve the issue, the most basic change to the current source might look
something like this:
...
static HWND hwndFrom = NULL;
static HWND hwndFor = NULL;
static INT_PTR CALLBACK property_sheet_proc(HWND hwnd, UINT msg, WPARAM wparam,
LPARAM lparam)
{
...snip...
case WM_NOTIFY: {
switch (((NMHDR FAR *)lparam)->code) {
case PSN_APPLY:
if (IPropertyPage_Apply(property_page) == NOERROR) {
SetWindowLong(hwnd, DWL_MSGRESULT, PSNRET_NOERROR);
PropSheet_UnChanged (((NMHDR FAR *)lparam)->hwndFrom,
hwnd); // Reset Apply button
} else
SetWindowLong(hwnd, DWL_MSGRESULT, PSNRET_INVALID);
break;
case PSN_SETACTIVE:
hwndFrom = ((NMHDR FAR *)lparam)->hwndFrom;
hwndFor = hwnd;
break;
case PSN_KILLACTIVE:
SetWindowLong(hwnd, DWL_MSGRESULT, FALSE);
break;
}
return FALSE;
}
case WM_DESTROY:
IPropertyPage_Show(property_page, SW_HIDE);
IPropertyPage_Deactivate(property_page);
hwndFrom = NULL;
hwndFor = NULL;
return FALSE;
default:
...snip...
static HRESULT WINAPI PropertyPageSite_OnStatusChange(
IPropertyPageSite *iface, DWORD dwFlags)
{
IPropertyPage *property_page;
TRACE("(%p, %x)\n", iface, dwFlags);
if ((hwndFrom) && (hwndFor)) { // Were they set?
if ((dwFlags & PROPPAGESTATUS_DIRTY) == PROPPAGESTATUS_DIRTY)
PropSheet_Changed (hwndFrom, hwndFor); // Enable Apply button
if ((dwFlags & PROPPAGESTATUS_VALIDATE) == PROPPAGESTATUS_VALIDATE) {
property_page = (IPropertyPage*)GetWindowLongPtrW(hwndFor,
DWLP_USER);
if ((property_page) &&
(IPropertyPage_Apply(property_page) == NOERROR))
PropSheet_UnChanged (hwndFrom, hwndFor); // Reset Apply button
}
if ((dwFlags & PROPPAGESTATUS_CLEAN) == PROPPAGESTATUS_CLEAN)
PropSheet_UnChanged (hwndFrom, hwndFor); // Reset Apply button
}
return S_OK;
}
--
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=21139
Summary: could install game using wine but will not play
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthewpepperell(a)googlemail.com
CC: matthewpepperell(a)googlemail.com
Created an attachment (id=25385)
--> (http://bugs.winehq.org/attachment.cgi?id=25385)
terminal message
I apologise now if i'm just being an idiot but I am a complete novice to linux.
I am using ubuntu 8.10 having had enough of windows, the one thing I miss with
windows is being able to play my football manager games (kills boredom!) I did
some research and found a utility (wine) that could help with my suffering,
after many hours reaserching i got to know the basics of wine and was able to
install my game with no issues. the problem arrose when trying to play the
game, i tried right clicking on the .exe file which did nothing, i then loaded
it in the terminal and the response i got is in the attachment. being I have
only used linux for 3 days the response has blew my mind and have been unable
to find anything on how to fix problem. any ideas i'd be very grateful.
i understand that it could just be that wine is unable to play this game, and
if so i'd just have to deal with it :(
thanks in advance
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40066
Bug ID: 40066
Summary: Typo in winecfg
Product: Wine
Version: 1.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
In winecfg in the Libraries register the overrides list does show
"Existing_overrides:" while the underscore should be a space.
--
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=19724
Summary: elevated demo has a terrible performance under Wine
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Created an attachment (id=23049)
--> (http://bugs.winehq.org/attachment.cgi?id=23049)
elevated_1024x768.exe (4K binary)
elevated_1024x768.exe runs in Linux a hundred times slower than in Windows.
native d3dx9_33.dll is required.
This is probably due:
fixme:d3d:IWineD3DDeviceImpl_CreateSwapChain The app requests more than one
back buffer, this can't
o use double buffering(=1 back buffer) if possible
--
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=27771
Summary: Ckeditor not work
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 0001(a)techemail.com
Hello!
Please test demo
wine iexplore http://ckeditor.com/demo
Buttons not work. Editing not work
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40352
Bug ID: 40352
Summary: Demo Devil May Cry 4 D3DERR_INVALIDCALL
Product: Wine
Version: 1.9.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: SolisX007(a)yahoo.com
Distribution: ---
Demo Devil May Cry 4 fails to load up D3DERR_INVALIDCALL on
01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 430]
(rev a1)
nouveau driver 1.0.12.
This appears to be a regression on wine-1.7.12.
wine-1.6.2 - is good.
wine-1.7.12 - is bad.
However i get get this when trying to do a regression test.
The merge base 50dc4cd636cc88031e0a49697ccc9f03b398e449 is bad.
This means the bug has been fixed between
50dc4cd636cc88031e0a49697ccc9f03b398e449 and
[40dc905fac617f06e69fe803a8313fa5e6a953b7].
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40234
Bug ID: 40234
Summary: No internet connection.
Product: Wine
Version: 1.6-rc2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: benhyper(a)gmail.com
Distribution: ---
I get the warning No internet connection.
ben@ben-E6232:~$ wine iexplore.exe
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ole:CoResumeClassObjects stub
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:urlmon:URLMoniker_BindToObject use running object table
err:secur32:SECUR32_initSchannelSP TLS library not found, SSL connections will
fail
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:iphlpapi:NotifyAddrChange (Handle 0x13de8b0, overlapped 0x13de8bc): stub
fixme:imm:ImmReleaseContext (0x20024, 0x17682c8): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ieframe:BrowserService_GetTravelLog 0x14fa30 0x32efe8
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 84 of
CGID_ShellDocView
fixme:ieframe:ClOleCommandTarget_QueryStatus (0x146968)->((null) 1 0x32efe0
(nil))
fixme:ieframe:ClOleCommandTarget_QueryStatus command_0: 27, 0x0
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 25
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 37 of
CGID_ShellDocView
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 84 of
CGID_ShellDocView
fixme:mshtml:nsHttpChannelInternal_SetDocumentURI (0x1756838)->()
fixme:ieframe:ClientSite_GetContainer (0x146968)->(0x32efa8)
fixme:wininet:InternetLockRequestFile STUB
fixme:mshtml:nsChannel_GetContentDisposition (0x182f0a8)->(0x32e78c)
fixme:mshtml:nsChannel_IsNoCacheResponse (0x182f0a8)->(0x32e45b)
fixme:ieframe:DocObjectService_IsErrorUrl 0x14fa30 L"https://www.winehq.org/"
0x32f868
fixme:ieframe:handle_navigation_error Navigate to error page
fixme:ieframe:DocHostUIHandler_GetDropTarget (0x146968)
fixme:ieframe:ClientSite_GetContainer (0x146968)->(0x32f8d8)
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 25
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:advapi:RegisterTraceGuidsW (0x6ad1b4b0, 0x25100a0,
{509962e0-406b-46f4-99ba-5a009f8d2225}, 3, 0x18247a0, (null), (null),
0x25100d0,): stub
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 69 of CGID_Explorer
fixme:ieframe:PropertyNotifySink_OnChanged unimplemented dispid 1005
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 69 of CGID_Explorer
fixme:win:EnumDisplayDevicesW ((null),0,0x32e5b4,0x00000000), stub!
fixme:resource:GetGuiResources (0xffffffff,0): stub
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 103 of
CGID_ShellDocView
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 2315 of group
{de4ba900-59ca-11cf-9592-444553540000}
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 35
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 28
fixme:mshtml:nsChannel_IsNoCacheResponse (0x182f0a8)->(0x32ee5b)
fixme:ieframe:ControlSite_OnFocus (0x146968)->(1)
fixme:imm:ImmGetOpenStatus (0x17682c8): semi-stub
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 67 of
CGID_ShellDocView
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 67 of
CGID_ShellDocView
--
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.