• Welcome to Valhalla Legends Archive.
 

Slider Help

Started by OuTLawZGoSu, September 13, 2003, 09:59 AM

Previous topic - Next topic

OuTLawZGoSu

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.

Yoni

You need to cross the Einstein-Rosen bridge.

Thing

I know where that is.  It's in Schwarzschild, TX.
That sucking sound you hear is my bandwidth.

OuTLawZGoSu

Thx for the good help :(

iago

Perhaps you should explain your problem a bit more, I have no idea what you're talking about.
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


OuTLawZGoSu

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.

Grok

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.