Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- From: "mayayana" <mayaXXyana@xxxxxxxxx>
- Date: Mon, 1 Jun 2009 19:23:39 -0400
I've gone back to using picture boxes and graphics obtained from
http://www.glassybuttons.com/glassy.php as I used in TuneFinder.
That's an interesting page. I didn't know
there were such things online.
It's also possible to get a MouseLeave event
in Win98+ using the function TrackMouseEvent.
It requires subclassing the button, though.
In form's declarations section:
Dim picFindTune_Left As Integer
Dim picFindTune_Top As Integer
In Form_Load:
' Capture coords of picture "button"
picFindTune_Left = picFindTune.Left
picFindTune_Top = picFindTune.Top
' Copy default picture into "button"
picFindTune.Picture = images(0).Picture
Plus:
Private Sub picFindTune_MouseDown(......)
picFindTune.Move picFindTune_Left + 1, picFindTune_Top + 1
End Sub
Private Sub picFindTune_MouseMove(......)
picFindTune.Picture = images(1).Picture
End Sub
Private Sub picFindTune_MouseUp(......)
picFindTune.Move picFindTune_Left, picFindTune_Top
End Sub
Private Sub Form_MouseMove(......)
picFindTune.Picture = images(0).Picture
End Sub
MM
.
- Follow-Ups:
- References:
- Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- From: mayayana
- Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- From: MM
- Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- From: mayayana
- Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- From: MM
- Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- Prev by Date: Re: PictureBox Scale Confusion
- Next by Date: Re: How to test for array?
- Previous by thread: Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- Next by thread: Re: Mayayana and others: Know The Notes now for 98SE using MM's new 'Never Replace' scheme
- Index(es):
Relevant Pages
|