please assist help needed

JustinDB

VB scripter
Local time
Today, 10:53
Joined
Dec 1, 2006
Messages
33
I made a database for models witch uses a controller. open the picture ballow to understand my problem better.

controller.JPG
The problem i have is that i want when focus is on one of the bleu balls a small discription come in the box show in the picture. i tried usig a label and a caption code but this isn't working. If anyone i able to solve this problem i would be very tankfull.

greetz
 
Thaks but the code you made did't work as i wanted but tanx anyway.

i worked the whole day to figure it out and it's quit simple exually here is the code as it should be

als default information heb ik een clock

Private Sub Form_Timer()
Me!Ilabel.Caption = Format(Now, "ddd hh:mm:ss")
End Sub

TIMERINTERVAL MUST BE SET TO 1000 BELOW TIMER IN ORDER TO MAKE IT WORK

this shows the day and the time in hours:minutes:seconds

when going over one of he balls i use this code

Private Sub ball1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me!label.Caption = "Text wanted"
Me.TimerInterval = 0
End Sub

afcourse the timer intervall has to be set to 0 else the clock starts again after 1 sec then all you have to do now set the following code to this place so when you no longer with your mouse over the ball button the timer is set back and the time will start running again.

Private Sub Details_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.TimerInterval = 1000
End Sub
 

Users who are viewing this thread

Back
Top Bottom