 | | From: | Simone Bartoccioni | | Subject: | Mouse-Over/Out | | Date: | Wed, 5 Jan 2005 13:08:41 +0100 |
|
|
 | Does new Mouse-Over/Out Event work only with XP? I have tried with W98 but nothing to do....
Simone
|
|
 | | From: | Mark.I | | Subject: | Re: Mouse-Over/Out | | Date: | Thu, 6 Jan 2005 17:57:05 -0000 |
|
|
 | Works with 2000 Mark.i > >
|
|
 | | From: | Marc Hamelin | | Subject: | Re: Mouse-Over/Out | | Date: | Thu, 6 Jan 2005 13:17:38 -0500 |
|
|
 | > Does new Mouse-Over/Out Event work only with XP? > I have tried with W98 but nothing to do....
If it doesn't work with Windows 98, I recommend using formMouseOver.cc from Rich (autotraker). It uses a timer to emulate the same thing. In fact, it was created before the MouseOver and MouseOut event were added to dBase Plus...
Marc Hamelin
|
|
 | | From: | Jean-Pierre Martel | | Subject: | Re: Mouse-Over/Out | | Date: | Tue, 11 Jan 2005 00:47:08 -0500 |
|
|
 | In article , mediabyte@tiscali.it says... > Does new Mouse-Over/Out Event work only with XP? > I have tried with W98 but nothing to do....
Yes. I can confirm that the onMouseOver() and onMouseOut() don't work at all under Win98.
Jean-Pierre Martel, editor The dBASE Developers Bulletin Blue Star dBASE Plus Core Concepts Graduate
** END HEADER -- do not remove this line // // Generated on 11/01/05 // parameter bModal local f f = new BartoccioniForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif
class BartoccioniForm of FORM with (this) onLeftMouseDown = class::OBJECT_ONLEFTMOUSEDOWN onLeftMouseUp = class::OBJECT_ONLEFTMOUSEUP onMouseOver = class::OBJECT_ONMOUSEOVER onMouseOut = class::OBJECT_ONMOUSEOUT height = 10.4545 left = 53.0 top = 0.0 width = 40.0 text = "" endwith
this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onLeftMouseDown = class::OBJECT_ONLEFTMOUSEDOWN onLeftMouseUp = class::OBJECT_ONLEFTMOUSEUP onMouseOver = class::OBJECT_ONMOUSEOVER onMouseOut = class::OBJECT_ONMOUSEOUT height = 1.0909 left = 8.8571 top = 1.0455 width = 15.2857 text = "Pushbutton1" endwith
this.IMAGE1 = new IMAGE(this) with (this.IMAGE1) onLeftMouseDown = class::OBJECT_ONLEFTMOUSEDOWN onLeftMouseUp = class::OBJECT_ONLEFTMOUSEUP onMouseOver = class::OBJECT_ONMOUSEOVER onMouseOut = class::OBJECT_ONMOUSEOUT height = 4.0 left = 10.2857 top = 2.8636 width = 12.0 endwith
Function Object_onLeftMouseDown(flags, col, row) ? "Down" return
Function Object_onLeftMouseUp(flags, col, row) ? "Up" return
Function Object_onMouseOut(flags, col, row) ? "Out" return
Function Object_onMouseOver(flags, col, row) ? "Over" return
endclass
|
|
 | | From: | Marty Kay | | Subject: | Re: Mouse-Over/Out | | Date: | Sun, 16 Jan 2005 22:09:55 -0500 |
|
|
 | > Does new Mouse-Over/Out Event work only with XP? > I have tried with W98 but nothing to do....
We have begun investigating this problem.
We will get back to you here within a few days.
- Marty Kay (dBI) -
|
|