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.
You need to cross the Einstein-Rosen bridge.
I know where that is. It's in Schwarzschild, TX.
Thx for the good help :(
Perhaps you should explain your problem a bit more, I have no idea what you're talking about.
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.
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.