http://bugs.winehq.org/show_bug.cgi?id=18239
Summary: regedit should remember the last key open
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)centrum.cz
On Windows regedit remembers the last key open in the GUI
This is very useful when you have to revisit a value previously entered through
the GUI
Note that entering multistrings is not very useful editing through .reg files
because regedit dumps multistrings in hexadecimal.
--
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=18479
Summary: problem with writing to stdout under MSYS
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
install MSYS and MinGW, start MSYS using c:\MSYS\1.0\msys.bat
cd /c/mingw/bin
ld --help
Nothing is printed, looking at a trace:
and an exception occurs in ld.exe, it looks like something has gone wrong with
stdout:
Lots of:
0040:warn:msvcrt:msvcrt_fdtoh :fd (1) - no handle!
All the calls to puts printing the --help output etc return 0:
0040:Call msvcrt.puts(0048aafa "Link little-endian objects") ret=004070ab
0040:Ret msvcrt.puts() retval=00000000 ret=004070ab
And eventually the exception occurs:
0040:Call KERNEL32.MultiByteToWideChar(00000000,00000000,0048a305 "
",ffffffff,00000000,00000000) ret=7ed98632
0040:Ret KERNEL32.MultiByteToWideChar() retval=00000003 ret=7ed98632
0040:Call ntdll.RtlAllocateHeap(00110000,00000000,00000006) ret=7ed98658
0040:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7bc4501d
ip=7bc4501d tid=0040
...
--
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=18671
Summary: Getting Error while Calling XMLHTTP using VB6
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gowrishankar(a)wondersoft.in
CC: gowrishankar(a)wondersoft.in
'-------------------------------------------------------------------------
Hi i am getting system error : - 2146697206
and using mxxml.dll and msxml2.dll as reference for this vb coding
kindly help me to solve this issue
'-------------------------------------------------------------------------
Option Explicit
Dim HttpReq As XMLHTTP
Private Sub Command1_Click()
On Error GoTo err
Dim strURL
strURL = "http://XXXXXXXXXXXXXXXXXXXXX.aspx"
'==============================================
'===> Creating XMLIsland to send to Server <===
'==============================================
Dim xmlString
xmlString = "<xml><Authenticate "
xmlString = xmlString & "UserName='admin' "
xmlString = xmlString & "Password ='new' "
xmlString = xmlString & "/></xml>"
'=====================================
'===> Sending XMLIsland to Server <===
'=====================================
Set HttpReq = New XMLHTTP
HttpReq.open "POST", strURL, False
HttpReq.send xmlString
'==========================================================
'===> Receiving and Analyzing the response from Server <===
'==========================================================
Dim Response As String
Response = HttpReq.responseText
MsgBox Response
Exit Sub
err:
MsgBox err.Number & " " & err.Description
End Sub
--
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=18690
Summary: CTRL + Shift + Tab in Firefox 3 does nothing (dogfood)
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.mozilla.com/en-US/firefox/
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Follow up to bug 14248. In native firefox (winetricks -q firefox3), Ctrl + T
will bring up a new tab, and Ctrl + tab will shift focus to the right, but Ctrl
+ shift + tab won't shift focus to the left. It is simply discarded (AFAICT).
--
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=18825
Summary: winemaker: Extract more information from vcproj
Product: Wine
Version: 1.1.23
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivan1986(a)list.ru
CC: nerv(a)dawncrow.de
Hello
i try build miranda IM from SVN
in bug 230(http://bugs.winehq.org/show_bug.cgi?id=230)
what i do:
svn co https://svn.sourceforge.net/svnroot/miranda/trunk
cd trunk/miranda/bin8
winemaker miranda32.sln
than i run make and got error:
...
main.o: In function `WinMain':
main.cpp:(.text+0x66): undefined reference to `InitCommonControls'
...
InitCommonControls() is function from comctl32.dll
dbtool_8.vcproj:
...
<Tool
Name="VCLinkerTool"
IgnoreImportLibrary="true"
AdditionalDependencies="comctl32.lib"
SuppressStartupBanner="true"
...
when i add comctl32 to MakeFile (dbtool_exe_DLLS) manual this path goung ok
But another undefined reference is still write.
Also i get strange linker error:
openerror.cpp:(.text+0x43b): undefined reference to `mmi'
openerror.cpp:(.text+0x47a): undefined reference to `utfi'
mmi and utfi is global variables, but i not find where they declared in include
files, in VS.NET 8.0 (2005) project build normal
--
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=17986
Summary: BrsFolder_OnCommand make new folder not implemented
Product: Wine
Version: 1.1.18
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teach2000(a)basement.nl
Created an attachment (id=20354)
--> (http://bugs.winehq.org/attachment.cgi?id=20354)
Test project created with Delphi 2007.
The SHBrowseForFolder dialog doesn't allow creating directories.
Log:
BrsFolder_OnCommand make new folder not implemented
Open attached executable.
Click 'Button1'.
Browse to directory in which to create new directory.
Click 'Make New Folder'.
Exp.: Folder 'New Folder' is created.
Act.: Nothing happens, except fixme:shell:BrsFolder_OnCommand make new folder
not implemented.
--
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=17603
Summary: winecfg crashes on encountering unknown (incorrect) dll
overrides
Product: Wine
Version: 1.1.16
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: divided.mind(a)gmail.com
Created an attachment (id=19771)
--> (http://bugs.winehq.org/attachment.cgi?id=19771)
0003-Winecfg-doesn-t-segfault-on-unknown-dll-override-mod.patch
When in the registry there is something else than known "native" and "builtin"
keywords entered in dll overrides, winecfg crashes on opening dll override tab.
Attached patch solves the problem.
--
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=17498
Summary: winemaker fails on 64-bit systems
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
CC: julliard(a)winehq.org
After running winemaker in the normal way, e.g.
> winemaker --lower-uppercase .
performing a make results in the following error messages.
/usr/bin/ld: Relocatable linking with relocations from format elf32-i386
(test.o) to format elf64-x86-64 (test.8QHnKr.o) is not supported
winebuild: /usr/bin/ld -r failed with status 256
Git commit a5947ffcd1ffbf15587ebdcf206efdfd308a2a47
"winegcc: Don't pass the as/ld/nm commands to winebuild"
causes this regression.
--
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=16914
Summary: wrc chokes on a file which is accepted by windows rc
Product: Wine
Version: 1.0.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ilya.sandler(a)gmail.com
wrc chokes on this file
#include <windows.h>
Chem Menu
{
POPUP "&Elements",
{
MENUITEM "&Oxygen", 200
MENUITEM "&Carbon", 201
}
}
cheetah:~/comp> wrc wrcbug.rc
wrcbug.rc:5:2: Error: syntax error
this is on ubuntu with 1.0.0-1ubuntu4~hardy1,
the problem is apparently caused by an extra comma after "&Elements" ( which is
however accepted by window's rc)
--
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=16466
Summary: Palm OS Resource Editor crashes
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
URL: http://www.accessdevnet.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
Created an attachment (id=17838)
--> (http://bugs.winehq.org/attachment.cgi?id=17838)
Backtrace when clicked "new file->XML resource description"
Palm OS Resource Editor crashes on new file or opening file.
--
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.