http://bugs.winehq.com/show_bug.cgi?id=900
------- Additional Comments From hogger2(a)mushworld.dnsart.com 2002-07-22 15:34 -------
I've got a 233 with 64 megs of ram. THe CPU is ok for compiling in the
background. THe memory is a big problem, as is my only 16 GB of storage space
(of which, 800 MB is currently free. I do video recording with real time
compression on my computer, so I need all the CPU power I can get. Also, with
mozilla taking up 30 MB of memory, openoffice another 20MB, memory gets a bit
tight on this college workhorse. I've got summer school finals coming up right
now so I can't do much of my own testing. Upgrading from Debian potato to Debian
Woody is my next project. My main constraint though is the disk space.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=900>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 15:27 -------
Thankyou for the additional information. If you still see this with the latest
release of wine at least we have a couple of places to look at. I think that
this one is the most interesting, This is from Steve Varadi first post
> fixme:shdocvw:WBOC_GetControlInfo stub: LPCONTROLINFO = 0x4209df18
If I recall correctly shdocvw defaulted to "native, builtin" and only recently
(within the last couple of months) changed to the following.
"shdocvw" = "builtin, native"
This looks like a regression as well. In his next postSteve Varadi wrote the
following
> This way Quickenw is unusable. I never experiented this kind of problem with
> Quicken. It was working more than five years for me under wine.
> Could anyone give some hints what went wrong??
So I think that using a native shdocvw.dll might "solve" your problem but it
won't fix wine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=143
Summary: Hangs when opening Excel97
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: VERIFIED
Severity: normal
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: miguelan(a)idecnet.com
Hangs when opening Excel.exe 97
Gives the message
err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufA),
setting to 0xdeadbeff
obtaining in winedbg the message
0xdeadbeef (SHLWAPI.DLL..reloc+0x1ef69eef): *** Invalid address 0xdeadbeef
(DHLWAPI.DLL..reloc+0x1ef69eef)
------- Additional Comments From miguelan(a)idecnet.com 2000-12-19 10:27 -------
in DLLOverides section in wine.conf change shell and shell32 to native, builtin
------- Additional Comments From jim(a)codeweavers.com 2000-12-21 15:52 -------
changed from "wine app DB" product to "Wine" itself. Especially since we don't
really have a wine Apps db yet;)
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2000-12-22 13:41 -------
StrRetToBufA has been implemented in Wine for ages.
Either the Wine version used is way too old
or a native shlwapi.dll was used which is lacking StrRetToBuf.
The debugger message ("SHLWAPI.DLL") seems to suggest
it is an insufficient native shlwapi.
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 14:11 -------
Since I cannot reproduce this with Excel 97 (MS Office 97) I am marking this as
Verified.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=143>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From JeffMay(a)earthlink.net 2002-07-22 14:00 -------
Thanks for the additional comments. Tonight when I get home I shall give a later version a try. I wonder if
it's related to recent kernels; I found these in the wine-users lists:
http://www.winehq.com/hypermail/wine-users/2002/07/0118.html
He's got one of the same symptoms I've seen, "I am using Quicken more than five years with most of the
features working, at least usable. Now since I upgrade SuSE 8.0 can not use quickenw because not let me type
in numbers:(( Always get error please type in number in nnnn.nn format. Certainly I did, but error message
come back again again..."
Another one: http://www.winehq.com/hypermail/wine-users/2002/07/0124.html
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=136
Summary: typo in the configure
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: VERIFIED
Severity: normal
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: oik(a)rocketmail.com
Looks like the configure script is missing a '-' for the linker options passed from gcc:
srp@box$ cvs diff configure
Index: configure
===================================================================
RCS file: /home/wine/wine/configure,v
retrieving revision 1.174
diff -u -r1.174 configure
--- configure 2000/12/12 00:38:58 1.174
+++ configure 2000/12/12 23:39:06
@@ -4806,7 +4806,7 @@
echo "$ac_t""$ac_cv_c_dll_unixware" 1>&6
if test "$ac_cv_c_dll_unixware" = "yes"
then
- LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,h,\$(libdir)/%)"
+ LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,\$(libdir)/%)"
LDDLLFLAGS="-Wl,-B,symbolic"
else
echo $ac_n "checking "whether we can build a NetBSD dll"""... $ac_c" 1>&6
srp@box$ cvs diff configure.in
Index: configure.in
===================================================================
RCS file: /home/wine/wine/configure.in,v
retrieving revision 1.174
diff -u -r1.174 configure.in
--- configure.in 2000/12/12 00:38:58 1.174
+++ configure.in 2000/12/12 23:41:51
@@ -557,7 +557,7 @@
])
if test "$ac_cv_c_dll_unixware" = "yes"
then
- LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,h,\$(libdir)/%)"
+ LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,\$(libdir)/%)"
LDDLLFLAGS="-Wl,-B,symbolic"
else
AC_CACHE_CHECK("whether we can build a NetBSD dll",
Should be -Wl,-h,... instead of -Wl,h
Was just building for fun so am being too lazy to get myself set up with ssh etc... Sorry.
Cheers
srp
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2000-12-31 20:10 -------
Hmm, this has been fixed in the meantime somehow.
Thanks for mentioning it anyway.
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 13:57 -------
This is has been fixed for a long time. Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=136>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=135
Summary: winfile.exe triggers LoadMagicItem with magic=0
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: VERIFIED
Severity: normal
Priority: P1
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: nneul(a)umr.edu
winfile.exe from win98 triggers MENU_LoadMagicItem with a magic of 0.
fixme:menu:MENU_LoadMagicItem Magic 0x00000000 not implemented
It looks like this is undefined in the winuser.h header, only -1,1-11 are
defnied.
Maybe:
if((LOWORD((int)lpitem->text))<12)
that needs changed in controls/menu.c?
Adding a 'case 0: return 0' in the routine obviously makes warning go away, but
that probably isn't the best fix.
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2000-12-22 14:08 -------
Hmm, I can't reproduce that with W98SE winfile.exe.
I've never seen that problem with winfile.
How does it happen ?
More details please ! :-)
------- Additional Comments From nneul(a)umr.edu 2001-01-06 12:38 -------
Beats me, not seeing it any more with latest cvs 01/06.
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 13:55 -------
I am marking this verified. This issue does not exist anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=135>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=133
Summary: install of winedbg
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: VERIFIED
Severity: normal
Priority: P1
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: nneul(a)umr.edu
The install attempts to symlink winedbg without unlinking it first.
This causes a failure on any subsequent install:
Wine build complete.
cd `dirname debugger/__install__` && gmake install
gmake[1]: Entering directory `/products/wine/wine/debugger'
[ -d /products/wine/linux/bin ] || mkdir -p /products/wine/linux/bin
/usr/bin/install -c winedbg.so /products/wine/linux/bin/winedbg.so
cd /products/wine/linux/bin && ln -s wine winedbg
ln: winedbg: File exists
gmake[1]: *** [install] Error 1
gmake[1]: Leaving directory `/products/wine/wine/debugger'
gmake: *** [debugger/__install__] Error 2
You should make that make target ignore errors, or unlink it first.
I changed to this in Makefile:
install:: $(MODULE).so
[ -d $(bindir) ] || $(MKDIR) $(bindir)
$(INSTALL_PROGRAM) $(MODULE).so $(bindir)/$(MODULE).so
cd $(bindir) && $(RM) $(MODULE) && $(LN_S) wine $(MODULE)
------- Additional Comments From nneul(a)umr.edu 2001-01-06 12:43 -------
Looks to have been corrected on 1.23 or 1.24 update of debugger/Makefile for .so
build.
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 13:53 -------
This bug is Fixed. Verifying.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=133>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=122
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 13:52 -------
As far as I can tell this isssue is fixed Verifying.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=122>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-07-22 13:43 -------
Luigi,
could you explain how to reproduce the issue and what should really happen?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 12:34 -------
Jeff; Part of the problem that the developers with of wine face is that we need
bug reports for programs that we do not have access to. So bug reports for any
program are nesessary and appreciated. However at this point the ximian release
of wine is 3 releases behind. Winehq releases a new version of wine usually
about once a month.
Development in wine is very active and this bug might be fixed in a more current
release. For that reason it is recomended that you install from tarball or
better yet CVS.
Building Wine from source is harder to do than installing from Ximian. I know
that for sure since I use ximian. Its one sweet package manager. That being said
though the amount of extra effort is not IMO that much.
If ugrading your wine does not fix the problem a trace (wine --debugmsg +dialog
...) would be usefull.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=905
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-07-22 12:26 -------
Wow, excellent submission !
Could you check whether you find anything suspicious in a log file done via
--debugmsg +relay,+winsock,+wininet,+file ?
Thanks !
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=905>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-07-22 12:22 -------
Please try with a current Wine version.
The number field sounds like it may be oleaut32 related.
We've had quite a few oleaut32 fixes in between.
Thanks !
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
Summary: Quicked Deluxe 99 dosen't work with Red Carpet release
of Wine
Product: Wine
Version: 20020411
Platform: PC
OS/Version: Linux
Status: NEW
Severity: critical
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: JeffMay(a)earthlink.net
System: Red Hat 7.1 / Ximian desktop
K6-2/400 with 192MB RAM and 60 GB disk.
48x CD-ROM, 8x10x32 CD-RW.
Diamond Viper 330 video.
2.4.18 kernel
Uses only Wine builtin DLLs; no Windows components available
Wine version: 20020411-6 (obtained a couple of nights ago from Ximian)
I had to rebuild my system from a HD failure last week. Latest Wine
version doesn't seem to work with Quicken Deluxe 99:
Program installs ok. I can open up my restored data files. I open the register,
and begin to enter a new entry. I enter the date, press TAB, enter the check
number and press TAB. Quicken freezes up. I can quit the program by going back
to the shell I launched Wine from and pressing control-c. I also note that CPU
utilization JUMPS when this happens, from 8% to more than 50% (using top to
monitor).
Also, I notice that if I use the mouse and not the TAB key, I can get by that
point and continue entering data. When I get to entering the check amount,
Quicken tells me to enter a number in "nnn.nn" format. Well I did! Furthermore,
even opening the little Quicken calculator doesn't work. No numeric entry in a
currency field is understood.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=117
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 11:05 -------
Closing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=117>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=116
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 11:04 -------
Closing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=116>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=114
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 11:02 -------
Closing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=114>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=113
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 11:00 -------
Closing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=113>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=109
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 10:55 -------
Closing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=109>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=35
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-22 10:38 -------
Closing This bug
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=35>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=896
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From apa3a(a)yahoo.com 2002-07-22 10:19 -------
Close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=896>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=895
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From apa3a(a)yahoo.com 2002-07-22 10:19 -------
Close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=895>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=905
Summary: Last character in network transmission being dropped
Product: Wine
Version: 20020411
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: gnutt(a)belzberg.com
Not quite sure how to explain this. Basically, when sending a string across a
socket connection the last character is getting knocked off. I've had
problems with a few network programs, but this one in particular I can check
the logs on and every message has the last character chopped off. PCAnywhere
may also be having a similar issue.
Need to revisit the winsock emulator?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=905>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From l.capriotti(a)tiscali.it 2002-07-22 04:09 -------
Created an attachment (id=238)
test case for bug #807
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
61 NEW winemaker: Add support for the Visual C++ project files
66 NEW PrgWin95: Custom cursor display bug
68 NEW Winelib: SEH support
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
123 NEW ComboBoxes and keyboard movements: Closing
125 NEW Redraw leaves no widgets in window
128 NEW Segfaults on trying to open fontdlg for AIM95
129 NEW Crash when exiting AIM95
130 NEW Win3.1 program function keys and ALT/SHIFT/CTRL don't w
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
154 NEW Fonts not loaded
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
185 NEW Checkpoint Firewall-1 Gui doesn't work because of starn
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
209 NEW Wine setup ends with TCL error and no config file is wr
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 NEW codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
297 NEW implement PeekNamedPipe
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
330 NEW Improve RichEdit headers
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
415 NEW Some programs do not save/open files
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
482 NEW Convert HDRVR to a void* (references: 37)
483 NEW Convert HENHMETAFILE to a void* (references: 25)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
489 NEW Convert HMETAFILE to a void* (references: 32)
490 NEW Convert HMIDI to a void* (references: 7)
491 NEW Convert HMIDIIN to a void* (references: 5)
492 NEW Convert HMIDIOUT to a void* (references: 12)
493 NEW Convert HMIDISTRM to a void* (references: 6)
494 NEW Convert HMIXER to a void* (references: 4)
495 NEW Convert HMIXEROBJ to a void* (references: 5)
496 NEW Convert HMMIO to a void* (references: 20)
498 NEW Convert HPALETTE to a void* (references: 34)
500 NEW Convert HRGN to a void* (references: 179)
501 NEW Convert HRSRC to a void* (references: 86)
502 NEW Convert HTASK to a void* (references: 17)
503 NEW Convert HWAVE to a void* (references: 9)
504 NEW Convert HWAVEIN to a void* (references: 4)
505 NEW Convert HWAVEOUT to a void* (references: 15)
506 NEW Convert HKL to a void* (references: 40)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
509 NEW Convert HWND to a void* (references: 3486)
510 NEW Convert HACCEL to a void* (references: 23)
517 NEW Could not load wprocs.dll
526 NEW Document the regression testing framework
527 NEW Running C regression tests on Windows with MSVC
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
681 NEW Two of the shlwapi DLL regression tests fail under wine
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
746 NEW wrc gives segfault when creating kernel.res
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: only sometimes - wodDsCreate DirectSound fla
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
787 NEW wine-20020605 compile error (`perl_parse' from incompat
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
823 ASSI Printing with CUPS does not work automatically
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
843 ASSI CreateFile returns ERROR_SHARING_VIOLATION instead of E
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
856 ASSI Window icons dont appear for VB programs
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
866 NEW Wine fails to find freetype & x11drv
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 NEW Win9xism in shell32 (MapSL)
874 NEW Unixisms and Wineism in shell32.dll
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
880 NEW Unhandled shell file operation 4
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=792
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-21 21:29 -------
I haven't come up with anything except dead ends so far changing to native
commctrl gives same results and cutouts for controls does not seem to be normal
for subwindows. In short at this point I have only a slightly better
understanding of whats wrong but no idea of where the bug is or how to fix it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=792>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.