http://bugs.winehq.com/show_bug.cgi?id=1536
------- Additional Comments From corentin.fougeray(a)wanadoo.fr 2003-06-12 15:27 -------
I also have this problem. I use a french MS Natural Keyboard Pro (with euro
key). Wine says it doesn't detect my keyboard layout but i can run the notepad
(keyboard responding). But for other applications (including games) no keyboard
: what i type is only printed in the console. I use Linux Mandrake 9.2 with Wine
20031118.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1861
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-05-12 10:51 -------
Sorry, but this bug report tells us nothing, that fixme message does not cause
fatal errors, it is simply a reminder to the developers to improve that function
later. It cannot cause a crash. You will need to debug this program.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=251
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 01:03 -------
probably long gone bug.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=327
Bug 327 depends on bug 251, which changed state.
Bug 251 Summary: codeweavers-wine does not install regapi and uninstaller
http://bugs.winehq.com/show_bug.cgi?id=251
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1860
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 00:47 -------
no content.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1596
------- Additional Comments From bendees(a)cox.net 2003-04-12 20:48 -------
Sorry for the delay. I've since determined that my previous assertion was
wrong: this program doesn't work at all. It looks like it uses it's own
communications DLL's, presumably for security, that don't work under Wine.
I'll be happy to continue to test the GUI difficulties that I was having if
anyone's interested, but I don't see any way of getting this program to work
under Wine and I've decided to use an alternative web-based method instead.
I don't know what to do with this bug, though, whether I should resolve it or
let it stay.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1845
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2003-04-12 14:03 -------
Could you perhaps write a test case for that error, e.g. in
dlls/user/tests/wsprintf?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1809
------- Additional Comments From engelbert.gruber(a)ssg.co.at 2003-03-12 22:44 -------
wd97 setup works on 20031118 BUT needs 2 hours on 600MHz to finish.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1863
Summary: VBScript Regular Expression parser: cannot access
results
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ed-winebug(a)leafe.com
I'm using the 20031016 release of Wine on RH8. I have some Visual FoxPro code that needs to
parse regular expressions. The only way to do that is to instantiate a VBScript.RegExp object. The
VBScript classes are part of the Windows Script Host, so I downloaded the Windows Script Host
v5.6 from http://tinyurl.com/b81y, and installed it into Wine without any problems.
The VBScript.RegExp has a pretty clunky interface; it requires several layers of sub-object to get
the results. Here's a sample of the code you need to get a regular expression match. In it, I'm
trying to extract the digits in the middle of a serial number:
loRegEx = CREATEOBJECT("VBScript.RegExp")
loRegEx.Pattern = "[a-z]+([0-9]+)[a-z]+"
loExtract = loRegEx.Execute("The serial number is zx8392ks")
loResult = loExtract.Item(0)
* This next line throws an error
lcDigits = loResult.SubMatches(0)
RETURN lcDigits
If you run that code in Visual FoxPro under Wine, it proceeds along fine until the line indicated.
Trying to access the SubMatches child object of the result item always results in an error message
that reads:
OLE error code 0x80004005: Unknown COM status code
This isn't very informative to me, but I'm hoping that someone here will know how to fix this.
Without being able to access the SubMatches object, using Regular Expressions in VFP is
impossible. I've tried all sorts of expressions and patterns, and they all work well running VFP in
Windows, but throw an error when running under Wine.
In my wine config file, I have the following settings:
; Visual FoxPro 8:
[AppDefaults\\vfp8.EXE\\Version]
"Windows" = "win2k"
[AppDefaults\\vfp8.EXE\\DllOverrides]
"oleaut32" = "native, builtin"
"odbc32" = "native"
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 19:03 -------
I've managed to get Steam up and running--that would probably mean that this is
*not* a bug.
Just a couple of quick steps to resolve the crash that follows shortly after
those lines:
Download and install (not sure if this is mandatory, but on a hunch as to the
CoCreateInstance message):
http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbr…
Then tweak the DllOverrides... Here's a setup that was working for me (it's a
hacked together list, it's quite likely I could do it cleaner, I just did a
one-pass brute force thing)...
[AppDefaults\\Steam.exe\\DllOverrides]
"*comctl32" = "builtin"
"mapi" = "native, builtin"
"mapi32" = "native, builtin"
"ole32" = "native, builtin"
"compobj" = "native, builtin"
"ole2" = "native, builtin"
"ole2nls" = "native, builtin"
"ole2conv" = "native, builtin"
"ole2prox" = "native, builtin"
"ole2thk" = "native, builtin"
"storage" = "native, builtin"
"olepro32" = "native, builtin"
"rpcrt4" = "native"
"oleaut32" = "native"
"msvcrt" = "native, builtin"
"wininet" = "native"
"setupapi" = "native, builtin"
"devenum" = "native, builtin"
"quartz" = "native, builtin"
"urlmon" = "native"
"shdocvw" = "native"
"jscript" = "native, builtin"
"wintrust" = "native, builtin"
"shlwapi" = "native, builtin"
"secur32" = "native, builtin"
"crypt32" = "native"
"ddraw" = "native, builtin"
"shlwapi" = "native, builtin"
"*user.exe" = "native,builtin"
"*" = "builtin, native"
Now to get hl.exe running! ;)
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1861
Summary: fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal
yet.
Product: Wine
Version: 20011108
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P4
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: chandleg(a)wizardsworks.org
This is an application for a Tax Company, who is getting ready to gear up for
Tax Season. The exact Error is:
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
It's an immediate fail, Please let me know what other info you need.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 12:04 -------
I'm running into the same problem with CVS build from last night. I'm going to
do some debugging work tonight to see if I can sort this out--that will let us
know what's getting messed up. I'm looking at the source of the function, and,
well it looks pretty straightforward... Unless a define got messed up
somewhere (unlikely, I would think) I can't see what the problem would be.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1860
Summary: download
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mester.gulerod(a)mail.dk
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-01-12 17:02 -------
Yeah, that would be good. I don't have a cross compiler setup at the moment
though. I'll try and remember to talk to some people who do, writing the test
case isn't the hard part, getting it into EXE form is.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-01-12 16:05 -------
Mike,
The value of cpuHz on my system is 451083000 - i.e. nicely consistent with a
nominal clock speed of 450MHz.
Does the 'frequency' structure mentioned in that section of Wine code actually
exist in that form in Windows and, if so, is it accessible? I have a dual-boot
system (SUSE 9.0/Win98SE), so if a simple test program could be written to
display the value of frequency->QuadPart under Windows, it would be possible to
see what values different speed machines return - which ought to make it
possible to refine Wine's formula for it accordingly.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1859
Summary: clicking on "disk" crashes "HEX WOKRSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) click on "Disk"
5) select "open drive"
expected result: wine does not work with real disks... therefore it should
ignore RAW access to the disk
real result: steps from above cause wine and app to crash
workaround: do not slick on "disk" --> "open drive"
wine version: CVS wine-20031129
system: RH9 kernel 2.4.20-8
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1858
Summary: tab switching does not work for "HEX WORKSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) open binary file_1
5) open another binary file_2
expected result: user should be able to switch between file_1 and file_2 by
clicking with left mouse button on tab "file_1" or "file_2"
real result: last loaded file is active and clicking on the tab does not switch
from one file to the other one
workaround: user can switch between files going through pulldown menue
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1857
Summary: cs1005.exe (cs 1.5 patch utility) reports kernel32.dll
missing
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kyrsjo(a)solution-forge.net
When i try to upgrade cs to version 1.5 on my Fedora Core 1 system, i get an
error message stating:
"Error" "Could not load the DLL libary C:\WINDOWS\SYSTEM\kernel32.dll Bad exe
format for" "Ok"
when i take a look in my .wine/c/windows/system, it turn out that there is very
few .dll's there, and certainly no kernel.dll
when i run a quick locate kernel.dll, it turns out to be in
/usr/lib/wine/wine/kernel32.dll.so
tried linking this one into the windows\system folder, but that did'nt work out
as well.
I installed from an fedora core 1 rpm, and had to fiddle with the prelinker
(just a config file, but i'm no hacker) to get it working.
The install prog works fine, and cs 1.0 menues also.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1479
------- Additional Comments From soontir_fel(a)hotmail.com 2003-30-11 15:06 -------
Confirmed on 5.1 with 2003-11-18 WINE....but BugZilla won't let me confirm it
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-30-11 14:36 -------
What is the value of cpuHz before the division on your system then? If you look
at the code you can see this comment:
#if defined(__i386__) && defined(__GNUC__)
if (IsProcessorFeaturePresent( PF_RDTSC_INSTRUCTION_AVAILABLE )) {
/* The way Windows calculates this value is unclear, however simply
using the CPU frequency
gives a value out by approximately a thousand. That can cause some
applications to crash,
so we divide here to make our number more similar to the one Windows
gives */
frequency->QuadPart = cpuHz / 1000;
return TRUE;
}
#endif
As for simply switching it off, well, that's a possibility but some apps use
this value to calibrate themselves (like games) so I'm not sure we want to rip
it out just yet.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1667
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mike(a)theoretic.com
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=280
------- Additional Comments From marcus(a)jet.franken.de 2003-30-11 13:49 -------
note: the event created/signaled debuglines come from my SUSE rpms. sorry for
leaving debug in.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.