http://bugs.codeweavers.com/show_bug.cgi?id=314
*** shadow/314 Wed Apr 17 13:53:36 2002
--- shadow/314.tmp.16117 Thu Apr 18 03:40:58 2002
***************
*** 29,31 ****
--- 29,40 ----
------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:53 -------
Tobias, can you try to reproduce the issue with recent wine builds?
I can't get the app - the link is broken.
+
+
+ ------- Additional Comments From burnus(a)gmx.de 2002-04-18 03:40 -------
+ The link is broken since they switched to a win32 application
+ (http://www.commerzbank.com/firmen/exe/ibanakt.exe) which works nicely with
+ wine.
+
+ I've put the DOS version (which works nicely with dosem) to:
+ http://www.physik.fu-berlin.de/~tburnus/iban.exe
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=576
*** shadow/576 Thu Apr 18 03:08:36 2002
--- shadow/576.tmp.11975 Thu Apr 18 03:12:03 2002
***************
*** 60,62 ****
--- 60,70 ----
------- Additional Comments From noclaf(a)peterlink.ru 2002-04-18 03:08 -------
Created an attachment (id=65)
~/.wine/config
+
+
+ ------- Additional Comments From noclaf(a)peterlink.ru 2002-04-18 03:12 -------
+ My video card is nVidia GeForce 2MX400, 32 Mb RAM.
+ I use nVidia drivers from www.nvidia.com
+
+ The small swap space doesn't matter, cause I've used wine on this machine a
+ year ago and that was fine (it was not debian system)
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=576
*** shadow/576 Wed Apr 17 21:54:27 2002
--- shadow/576.tmp.11363 Thu Apr 18 03:08:36 2002
***************
*** 55,57 ****
--- 55,62 ----
matters with that much ram. What is your vidio card is it a rivia tnt2 ultra by
any chance? If its not could you attach your ~/.wine/config so wee can have a
look at it.
+
+
+ ------- Additional Comments From noclaf(a)peterlink.ru 2002-04-18 03:08 -------
+ Created an attachment (id=65)
+ ~/.wine/config
http://bugs.codeweavers.com/show_bug.cgi?id=576
*** shadow/576 Wed Apr 17 01:25:02 2002
--- shadow/576.tmp.3533 Wed Apr 17 21:54:27 2002
***************
*** 49,51 ****
--- 49,57 ----
System hangs deeply, no hdd activity and no response to keyboard and mouse
events. Alt-Ctrl-F1 makes no action.
+
+ ------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-04-17 21:54 -------
+ Your system seems fine, you have small swap space but I don't think that it
+ matters with that much ram. What is your vidio card is it a rivia tnt2 ultra by
+ any chance? If its not could you attach your ~/.wine/config so wee can have a
+ look at it.
http://bugs.codeweavers.com/show_bug.cgi?id=572
*** shadow/572 Wed Apr 10 22:11:33 2002
--- shadow/572.tmp.31821 Wed Apr 17 21:06:29 2002
***************
*** 57,59 ****
--- 57,63 ----
http://mlearl.home.attbi.com/public/winedebugend.txt.gz
for at least the near future.
+
+ ------- Additional Comments From mlearl(a)attbi.com 2002-04-17 21:06 -------
+ It looks to me from traces that the module it's having trouble trying to load is
+ rsabase.dll. I do not fully understand what's going on, however.
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=580
*** shadow/580 Wed Apr 17 14:37:06 2002
--- shadow/580.tmp.17949 Wed Apr 17 15:01:41 2002
***************
*** 29,31 ****
--- 29,35 ----
ShowScrollBar(hwnd, SB_VERT, FALSE);
Tested on Wine-20020411 (and previous releases)
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 15:01 -------
+ Mehmet, I can't reproduce the bug on the CVS Wine.
+ Do you mean I should click two times on the button with tooltip "Details"?
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=577
*** shadow/577 Wed Apr 17 02:39:16 2002
--- shadow/577.tmp.16059 Wed Apr 17 14:46:58 2002
***************
*** 66,68 ****
--- 66,74 ----
/dos
Hope that helps...
+
+ ------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-04-17 14:46 -------
+ changing line 581 to this seems to clear up the problem.
+ CROOT=`awk -F\" '/\[Drive C]/ {if (getline) print $4}' $LCONF`
+
+ I will submit a patch as soon as I can.
http://bugs.codeweavers.com/show_bug.cgi?id=581
*** shadow/581 Wed Apr 17 14:38:58 2002
--- shadow/581.tmp.15179 Wed Apr 17 14:38:58 2002
***************
*** 0 ****
--- 1,36 ----
+ +============================================================================+
+ | Weird contextmenu appearing on Open common dialogbox |
+ +----------------------------------------------------------------------------+
+ | Bug #: 581 Product: Wine |
+ | Status: UNCONFIRMED Version: 20020310 |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-misc |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: myasar(a)free.fr |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Launch notepad for example and File|Open to open Openfile dialog,
+ select "Detailled view".
+ Double-click inside the listview on a blank zone causes a
+ context menu to appears at coord (0,0) of the screen.
+
+ Cause :
+ In listview.c we are sending LVM_ITEMSELECTA on doubleclick :
+ we see in LISTVIEW_LButtonDblClk()) : hdr_notify(hwnd, LVN_ITEMACTIVATE)
+
+ From shell32/shlview.c ShellView_OnNotify() we have :
+
+ case LVN_ITEMACTIVATE:
+ TRACE("-- LVN_ITEMACTIVATE %p\n",This);
+ OnStateChange(This, CDBOSC_SELCHANGE); /* the browser will get the
+ IDataObject now */
+ ShellView_DoContextMenu(This, 0, 0, TRUE);
+ break;
+
+ Tested on Wine-20020411 (and previous releases)
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=219
*** shadow/219 Wed Apr 17 13:19:34 2002
--- shadow/219.tmp.8216 Wed Apr 17 13:54:06 2002
***************
*** 2,8 ****
| realMyst and many other programs refuse to run. |
+----------------------------------------------------------------------------+
| Bug #: 219 Product: Wine |
! | Status: NEW Version: 20010305 |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-loader |
--- 2,8 ----
| realMyst and many other programs refuse to run. |
+----------------------------------------------------------------------------+
| Bug #: 219 Product: Wine |
! | Status: NEW Version: 20011108 |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-loader |
***************
*** 57,59 ****
--- 57,92 ----
------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:19 -------
Edward, do you see the issue with recent Wine builds?
+
+ ------- Additional Comments From eddie(a)omegaware.com 2002-04-17 13:54 -------
+ I just tested it with the Codeweavers-Wine build 20011108.
+ I get this output
+ -------
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD SICE. Try --winver nt40 or win31 !
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD SIWVID. Try --winver nt40 or win31 !
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD NTICE. Try --winver nt40 or win31 !
+ wine: Unhandled exception, starting debugger...
+ err:seh:start_debugger Couldn't start debugger ("debugger/winedbg 134644056 48") (2)
+ Read the Wine Developers Guide on how to set up winedbg or another debugger
+ -------
+ under wine version 20011226 (WineX CVS) I get this output
+ -------
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD SICE. Try --winver nt40 or win31 !
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD SIWVID. Try --winver nt40 or win31 !
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD NTICE. Try --winver nt40 or win31 !
+ err:int:INSTR_IDT_Emulate Evil attempt to exploit win9x system security flaws
+ detected
+ err:int:INSTR_IDT_Emulate UNIX system security is too strong, can't emulate properly
+ wine: Unhandled exception, starting debugger...
+ err:seh:start_debugger Couldn't start debugger ("debugger/winedbg 134656512 72") (2)
+ Read the Wine Developers Guide on how to set up winedbg or another debugger
+ -------
+
+ And when I run wine with --winver nt40 or win2k I get the same error messages
+ with several dozen of this new one (with both versions of wine)
+ -------
+ fixme:win32:DEVICE_Open Unknown/unsupported VxD Secdrv. Try --winver nt40 or win31 !
+ -------
+ I have one possble thought... which is that maybe it has something to do with
+ wine having debugging.. as I know I had problems with other games which
+ complained that I was running within a debugger and refused to run.
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=109
*** shadow/109 Thu Mar 15 17:45:11 2001
--- shadow/109.tmp.5996 Wed Apr 17 13:37:34 2002
***************
*** 2,16 ****
| Wine's debian package not creating winedbg registry |
+----------------------------------------------------------------------------+
| Bug #: 109 Product: Wine |
! | Status: UNCONFIRMED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-ports |
+----------------------------------------------------------------------------+
! | Assigned To: bugs(a)codeweavers.com |
| Reported By: ishikawa(a)yk.rim.or.jp |
| CC list: Cc: |
+----------------------------------------------------------------------------+
| URL: |
+============================================================================+
| DESCRIPTION |
--- 2,17 ----
| Wine's debian package not creating winedbg registry |
+----------------------------------------------------------------------------+
| Bug #: 109 Product: Wine |
! | Status: RESOLVED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-ports |
+----------------------------------------------------------------------------+
! | Assigned To: wine-bugs(a)winehq.com |
| Reported By: ishikawa(a)yk.rim.or.jp |
| CC list: Cc: |
+----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
| URL: |
+============================================================================+
| DESCRIPTION |
***************
*** 66,68 ****
--- 67,73 ----
------- Additional Comments From BenE-A(a)new.rr.com 2001-03-15 17:45 -------
Why are you trying to do this? both KDE and GNOME have scientific calculator applications, which is basically what calc.exe is. I used to use WinBlows for prety much everything before I took the anti-M$ pledge, so I know these things.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:37 -------
+ According to comments from Jim Graham I assume we won't fix this.
+ Discuss the issue on wine-devel if you still want this to be fixed.
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=189
*** shadow/189 Sat Mar 3 09:25:34 2001
--- shadow/189.tmp.5424 Wed Apr 17 13:32:25 2002
***************
*** 2,18 ****
| The mouse wheel can scroll textboxes beyond the end |
+----------------------------------------------------------------------------+
| Bug #: 189 Product: Wine |
! | Status: UNCONFIRMED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-gui |
+----------------------------------------------------------------------------+
! | Assigned To: bugs(a)codeweavers.com |
| Reported By: wine-bugzilla(a)future.galanet.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
| URL: |
+============================================================================+
| DESCRIPTION |
The mouse wheel still allows to scroll down even when you reach the horizontal
end of a multiline textbox widget.
\ No newline at end of file
--- 2,23 ----
| The mouse wheel can scroll textboxes beyond the end |
+----------------------------------------------------------------------------+
| Bug #: 189 Product: Wine |
! | Status: RESOLVED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-gui |
+----------------------------------------------------------------------------+
! | Assigned To: wine-bugs(a)winehq.com |
| Reported By: wine-bugzilla(a)future.galanet.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
| URL: |
+============================================================================+
| DESCRIPTION |
The mouse wheel still allows to scroll down even when you reach the horizontal
end of a multiline textbox widget.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:32 -------
+ Ilya, try to reproduce the bug with recent Wine builds.
+ Reopen the bug if the issue still exists.
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=195
*** shadow/195 Fri Mar 16 01:47:13 2001
--- shadow/195.tmp.5148 Wed Apr 17 13:30:48 2002
***************
*** 2,16 ****
| "Managed" type of windows do not work |
+----------------------------------------------------------------------------+
| Bug #: 195 Product: Wine |
! | Status: UNCONFIRMED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-gui |
+----------------------------------------------------------------------------+
! | Assigned To: bugs(a)codeweavers.com |
| Reported By: michel(a)bouissou.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
| URL: |
+============================================================================+
| DESCRIPTION |
--- 2,17 ----
| "Managed" type of windows do not work |
+----------------------------------------------------------------------------+
| Bug #: 195 Product: Wine |
! | Status: RESOLVED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-gui |
+----------------------------------------------------------------------------+
! | Assigned To: wine-bugs(a)winehq.com |
| Reported By: michel(a)bouissou.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
| URL: |
+============================================================================+
| DESCRIPTION |
***************
*** 21,23 ****
--- 22,27 ----
corner, and these windows have no border and no title bar. There's no way to
move or resize them or whatever.
OTOH, the "unmanaged" and "wine desktop" options work as expected.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:30 -------
+ Should be fixed by now. Reopen the bug if you see the issue with recent Wine build.
\ No newline at end of file
http://bugs.codeweavers.com/show_bug.cgi?id=217
*** shadow/217 Wed Apr 17 13:21:02 2002
--- shadow/217.tmp.3893 Wed Apr 17 13:21:02 2002
***************
*** 0 ****
--- 1,26 ----
+ +============================================================================+
+ | Protocol error during StarCraft run |
+ +----------------------------------------------------------------------------+
+ | Bug #: 217 Product: Wine |
+ | Status: RESOLVED Version: 20010216 |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-misc |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: korey(a)nandgate.com |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ error is
+
+ protocol error: 0x#######: read: resource temporarily unavailable
+
+ the address is generally 0x8070318 or 0x8066c60, but it is starting to be more varied. I have a soundcard that is not working, and installed DirectX 8 instead of 5. after this error, StarCraft just freezes up and wine gets a whole bunch of errors concerning "ntdll", which I think are due to the protocol error.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-04-17 13:21 -------
+ Reporter, try recent Wine build.
+ Reopent the bug if you still see the issue.
\ No newline at end of file