Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > General > Moving Label


Reply
 
Thread Tools Display Modes
  #1  
Old 09-07-2002, 08:58 AM
wienerdufus's Avatar
wienerdufus wienerdufus is offline
Regular
 
Join Date: Aug 2002
Location: Auburn NY
Posts: 75
Talking Moving Label


Just out of pure wonder, I would like to know how to make a Label, follow the mouse movement on a form. So, when I move the mouse, the label stays right with it... Any ideas? Thanks!
__________________
"On a long enough timeline, everyones survival rate drops to zero."
Reply With Quote
  #2  
Old 09-07-2002, 09:26 AM
Delphy Delphy is offline
Regular
 
Join Date: May 2002
Posts: 56
Default

You could use the .MouseMove event of the Form and in it change the Label.Top and Label.Left to the X,Y of the mouse.

Something like that anyway
Reply With Quote
  #3  
Old 09-07-2002, 09:36 AM
Robby's Avatar
Robby Robby is offline
Code Factory

Retired Moderator
* Expert *
 
Join Date: Jan 2001
Location: Montreal, Ca.
Posts: 5,565
Default

try this...

Code:
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Label1.Move X, Y End Sub
__________________
Visit...Bassic Software
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->