http://bugs.winehq.org/show_bug.cgi?id=5139
------- Additional Comments From ead1234(a)hotmail.com 2006-24-05 20:01 -------
The temp.msi is just a copy of the America's Army installer in the temp folder.
I used cabextract on all .cab files in the install media and accessor.cab is no
where to be found. I wonder where it comes from?
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5139
------- Additional Comments From ead1234(a)hotmail.com 2006-24-05 19:30 -------
if you look in your wine windows/temp folder and open up one of the msi.tmp
files with an editor you will see the following message
The Windows Installer service cannot update one or more protected Windows files.
{{SFP Error: [2].
I'm guessing this is accessor.cab.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5139
------- Additional Comments From ead1234(a)hotmail.com 2006-24-05 18:55 -------
Yes I do know why you got the trace you did, the trace log output is wrong. I
compiled wine by changing the LastSequence to 1 in files.c, the trace of the
LastSequence is still >=1, so the trace message programming is errored. Upon
changing it to 1 it stopped looking for accessor.cab which is the first entry
in the media table. According to MSDN it should be >=0. Regardless the output of
the MSI trace still read >=1 so it is not outputting the proper SQL statement in
the trace. It should be reading the accessor.cab value anyhow as zero is the
first entry of the media table.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/…
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5139
------- Additional Comments From jasonspiro3+wine(a)gmail.com 2006-24-05 18:38 -------
EA, that's odd. If that is so, do you have any clue why I might have gotten the
log output that I got?
(If you are currently on IRC, you can contact me there if you prefer. My nick is
jspiro.)
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5139
------- Additional Comments From ead1234(a)hotmail.com 2006-24-05 18:19 -------
>From Jason Spiro 2006-05-19 13:50 -------
Wine-msi is executing the SQL statement "SELECT * FROM `Media` WHERE
`LastSequence` >= 1 ORDER BY `LastSequence`". That select statement should not
be selecting the row that mentions DiskId="22" LastSequence="0" DiskPrompt=""
Cabinet="accessor.cab" VolumeLabel="" Source=""
wine is executing SELECT * FROM `MEDIA` WHERE LastSequence >= 0 according to
files.c, not 1.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5228
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From alex(a)thehandofagony.com 2006-24-05 18:05 -------
Patch has been committed to CVS, so RESOLVING as FIXED.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=5289
Summary: Unsorted messages after scrolling MSN 5 chat window
Product: Wine
Version: 0.9.13.
Platform: PC
URL: http://appdb.winehq.org/appview.php?versionId=2177
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
If you scroll the conversation window in MSN Messenger 5.0, new messages are
not displayed below the earlier messages, but before an earlier message, and
on the same line.
I use native 'riched20', as the builtin one does not work (you are not able to
type messages when using it).
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=3639
------- Additional Comments From T.Bonner(a)freesurf.ch 2006-24-05 17:19 -------
During a programming work, I ran into a similar problem: loaded an external
bitmap for the toolbar (e.g. size was 64x15 for 4 buttons), and I erroneously
used the following code:
hwndTB = CreateToolbarEx
(hwndParent, /* paranet window */
dwToolBarStyles, /* window styles flags */
1, /* child ID */
14, /*15,*/ /* number of images in the bitmap */
GetModuleHandle(0), /*HINST_COMMCTRL,*/ /* bitmap resource */
(int) MAKEINTRESOURCE(300), /* uiBitmap ,*/ /* bitmap id */
ptbb, /* button array */
iNumButtons, /* number of elements in array */
16, 16, /* button size */
16, 16, /* bitmap size */
sizeof (TBBUTTON)
);
Here, the bitmap size y-value is wrong (I assumed the graphics was 16 in height,
but actually it was 15). Windows had no problems with this wrong value, but in
wine this resulted in a slightly wrong display. So I corrected the code and
everything went fine. In this sense, windows showed a more robust behavior to
wrong bitmap size values (although wine may be more correct here), and maybe
this is also the case here (or I should do a new bug report).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.