http://bugs.winehq.org/show_bug.cgi?id=5752
------- Additional Comments From dank(a)kegel.com 2006-25-07 05:20 -------
Also present in Notes 6.5.4 demo.
I just noticed that clicking the 'X'
in the mail database tab and then re-selecting Mail
seems to be enough to get the confused messages to
be readable again. Also, the problem may be worse
on messages with attachments, I'm not sure.
--
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=2185
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-25-07 05:12 -------
No response from user for more then two years. resolving abandoned. User, if you
still encounter problems with this application, please reopen this bug, and
report back with updated crash info.
--
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=5755
Summary: oleaut32: MS Dao3.5 fails to evaluate "SELECT ... WHERE
"X" & FieldName & "X" LIKE "XXX"" query
Product: Wine
Version: 0.9.17.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paolo.salvan(a)xvision.it
Using DAO 3.5 (the engine for MS Access 97 databases) and Wine 0.9.17
I've got a trouble:
when I launch a query that uses expression like this:
SELECT CategReport FROM TReport WHERE "X" & DefaultFor & "X" LIKE "XXX"
the query fails...
The console log says:
----
fixme:variant:VarCat Failed to convert right side from vt 1 to VT_BSTR?
----
Replacing the builtin OLEAUT32.DLL with the native DLL everything works
ok.
The attached minimal project reproduce the problem; before starting it, install
standard Dao 3.5 setup from MS or install
http://download.danea.it/demo/def2006demo09b.exe (that is my SW, it install a
minimal Dao3.5)
BTW, this is the minimal bit of Delphi code to reproduce the problem:
procedure TForm1.Button3Click(Sender: TObject);
var
daodbeng: DAODBEngine;
daodb: DAODatabase;
daors: DAORecordset;
begin
try
daodbeng:= OpDAO35.CreateEngine;
daodb:= daodbeng.OpenDatabase(ChangeFileExt(Application.ExeName,
'.mdb'), false, false, '');
// This works under Windows, fails under Wine:
// log: fixme:variant:VarCat Failed to convert right side from vt 1 to
VT_BSTR?
daors:= daodb.OpenRecordset('SELECT CategReport FROM TReport WHERE "X" &
DefaultFor & "X" LIKE "XXX"', dbOpenDynaset, _, _);
showmessage('OK');
daors.Free;
daodb.Free;
daodbeng.Free;
except
on e: Exception do
ShowMessage('Exception: ' + e.ClassName + '; Msg: ' + e.Message);
end;
end;
--
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=5754
Summary: oleaut32: MS Dao 3.5 fails to evalutate "SELECT
<CurrencyField> - <Currencyield> FROM ..." sql
Product: Wine
Version: 0.9.17.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paolo.salvan(a)xvision.it
Using DAO 3.5 (the engine for MS Access 97 databases) and Wine 0.9.17
I've got a trouble:
when I launch a query that does a subtraction between two currency field
(ie: "SELECT InvoiceTotal - Taxes AS Revenue FROM ...."
the query fails, lamenting some incorrect types...
The console log says:
----
fixme:variant:VarSub can't expand vt 6 vs 6 to a target type.
----
Replacing the builtin OLEAUT32.DLL with the native DLL everything works
ok.
The attached minimal project reproduce the problem; before starting it, install
standard Dao 3.5 setup from MS or install
http://download.danea.it/demo/def2006demo09b.exe (that is my SW, it install a
minimal Dao3.5)
BTW, this is the minimal bit of Delphi code to reproduce the problem:
procedure TForm1.Button2Click(Sender: TObject);
var
daodbeng: DAODBEngine;
daodb: DAODatabase;
daors: DAORecordset;
iType: integer;
begin
try
daodbeng:= OpDAO35.CreateEngine;
daodb:= daodbeng.OpenDatabase(ChangeFileExt(Application.ExeName,
'.mdb'), false, false, '');
// Note: TotDoc and TotNetto are CURRENCY fields
daors:= daodb.OpenRecordset('SELECT TotDoc - TotNetto AS Iva FROM
TDocTestate', dbOpenDynaset, _, _);
// Under windows, it shows "5", under Wine "0"
// log: fixme:variant:VarSub can't expand vt 6 vs 6 to a target type.
iType:= daors.Fields[0]._Type;
if iType = 5 then
showmessage('OK')
else
showmessage('Wrong type: ' + inttostr(iType));
daors.Free;
daodb.Free;
daodbeng.Free;
except
on e: Exception do
ShowMessage('Exception: ' + e.ClassName + '; Msg: ' + e.Message);
end;
end;
--
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=5303
------- Additional Comments From rob(a)codeweavers.com 2006-25-07 04:57 -------
Can you try removing your ~/.wine directory and trying the installer again
without DCOM? If that doesn't work, please attach a debug log made by setting
the environment variable WINEDEBUG to "+ole,+typelib,+olerelay,+seh".
--
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 truiken(a)gmail.com 2006-25-07 04:13 -------
My patch was just the test case. You need to apply Mike's patch to try the fix.
--
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=5701
------- Additional Comments From hverbeet(a)gmail.com 2006-25-07 02:59 -------
Looks like it's trying to do a HeapFree on something that isn't allocated (anymore).
--
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.