Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Problem with Lotus Notes client

0 views
Skip to first unread message

Reinhold Schoeb

unread,
Apr 4, 2002, 4:58:25 AM4/4/02
to
I was running the Lotus Notes client 5.0 since about one
year without any problems.

But since some weeks I got two strange problems :

First, when I switch to another folder than the default inbox,
Notes completely hangs and wine consumes 90 % CPU time. The
only way is to kill wine and restart.

Second, while writing a new mail in Notes, typed characters
are not echoed until a backspace or NL.

I am using wine 0.0.20020228 under Debian, Lotus Notes 5.0.

Does anyone know how to fix that.

Reinhold

jsm...@tiny.net

unread,
Apr 5, 2002, 2:35:00 PM4/5/02
to
Which version of Notes 5.0? Last time I checked IBM was up to 5.0.9a.

I'll be installing Notes 5.0.9.a on a Mandrake 8.2 system in a couple of weeks.
If I see anything I'll let you know.


Reinhold Schoeb <Reinhol...@gmx.net> wrote:
>I am using wine 0.0.20020228 under Debian, Lotus Notes 5.0.

>Does anyone know how to fix that.


--
Jim Smilanich jsm...@tiny.net
=JpS=SgtRock
"A man should be able to pilot a starship, plan an invasion, diaper
a baby, ....specialization is for insects!" -- Lazarus Long

Reinhold Schoeb

unread,
Apr 7, 2002, 10:09:47 AM4/7/02
to
jsm...@tiny.net wrote:

> Which version of Notes 5.0? Last time I checked IBM was up to 5.0.9a.

I use 5.0

> I'll be installing Notes 5.0.9.a on a Mandrake 8.2 system in a couple of
> weeks. If I see anything I'll let you know.

Great. Thanks !

Reinhold

jsm...@tiny.net

unread,
Apr 7, 2002, 10:50:23 AM4/7/02
to
Reinhold Schoeb <reinhol...@gmx.net> wrote:
>jsm...@tiny.net wrote:

>> Which version of Notes 5.0? Last time I checked IBM was up to 5.0.9a.

>I use 5.0

You should upgrade to 5.0.x something, then. Lots of bug fixes in the minor
revisions. You might solve your problems.

>> I'll be installing Notes 5.0.9.a on a Mandrake 8.2 system in a couple of
>> weeks. If I see anything I'll let you know.

>Great. Thanks !

NP.

Toby Haynes

unread,
Apr 13, 2002, 12:16:51 PM4/13/02
to

I've just moved to 20020411 from the Dec 2001 release and I've had to patch
both of these releases to sort out the disappearing text problem.

For 20020411, the patch looks like this (for dlls/user/painting.c)

--- painting.c Sat Mar 9 18:44:30 2002
+++ painting.c Fri Apr 12 17:12:48 2002
@@ -24,6 +24,7 @@
#include "wingdi.h"
#include "wine/winuser16.h"
#include "wine/server.h"
+#include "gdi.h"
#include "win.h"
#include "dce.h"
#include "wine/debug.h"
@@ -148,7 +149,7 @@


/***********************************************************************
- * BeginPaint (USER32.@)
+ * BeginPaint (USER32.@)
*/
HDC WINAPI BeginPaint( HWND hwnd, PAINTSTRUCT *lps )
{
@@ -235,10 +236,23 @@


/***********************************************************************
- * EndPaint (USER32.@)
+ * EndPaint (USER32.@)
*/
BOOL WINAPI EndPaint( HWND hwnd, const PAINTSTRUCT *lps )
{
+ WND *wnd;
+ if (hwnd && (wnd = WIN_FindWndPtr(hwnd)))
+ { /* FIXME : is this appropriate here !? */
+ DWORD clsStyle = wnd->clsStyle;
+ WIN_ReleaseWndPtr(wnd);
+ if (clsStyle & CS_OWNDC) /* the dc has been reused */
+ { /* restore visible region */
+ HRGN hrgn=CreateRectRgn(0,0,0,0);
+ SetHookFlags16( lps->hdc, DCHF_INVALIDATEVISRGN );
+ USER_Driver.pGetDC( hwnd, lps->hdc, hrgn, DCX_EXCLUDERGN );
+ DeleteObject(hrgn);
+ }
+ }
ReleaseDC( hwnd, lps->hdc );
ShowCaret( hwnd );
return TRUE;

Cheers,
Toby Haynes

--

Toby Haynes
The views and opinions expressed in this message are my own, and do
not necessarily reflect those of IBM Canada.

0 new messages