Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: OuTLawZGoSu on September 13, 2003, 09:59 AM

Title: Slider Help
Post by: OuTLawZGoSu on September 13, 2003, 09:59 AM
How can i make it so when the arow is on 5 and a msgbox shows up saying "poop"(example word :/)  i went to the custom setup thing in the properties window and i made the min 0 and the max 10.
Title: Re:Slider Help
Post by: Yoni on September 13, 2003, 10:15 AM
You need to cross the Einstein-Rosen bridge.
Title: Re:Slider Help
Post by: Thing on September 13, 2003, 12:32 PM
I know where that is.  It's in Schwarzschild, TX.
Title: Re:Slider Help
Post by: OuTLawZGoSu on September 13, 2003, 01:41 PM
Thx for the good help :(
Title: Re:Slider Help
Post by: iago on September 13, 2003, 01:55 PM
Perhaps you should explain your problem a bit more, I have no idea what you're talking about.
Title: Re:Slider Help
Post by: OuTLawZGoSu on September 13, 2003, 01:58 PM
Aight, you no when you pu tin the Slider on a form, and you move the arrow to different lines, well i need it so when the arow is on the 5th line, it shows a msgbox.
Title: Re:Slider Help
Post by: Grok on September 13, 2003, 02:03 PM
Quote from: OuTLawZGoSu on September 13, 2003, 01:58 PM
Aight, you no when you pu tin the Slider on a form, and you move the arrow to different lines, well i need it so when the arow is on the 5th line, it shows a msgbox.

Um,
Private Sub Slider1_Change()
   If Slider1.Value = 5 Then MsgBox "5"
End Sub


That couldn't be what you want.