Author | Message | Time |
---|---|---|
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. | September 13, 2003, 2:59 PM |
Yoni | You need to cross the Einstein-Rosen bridge. | September 13, 2003, 3:15 PM |
Thing | I know where that is. It's in Schwarzschild, TX. | September 13, 2003, 5:32 PM |
OuTLawZGoSu | Thx for the good help :( | September 13, 2003, 6:41 PM |
iago | Perhaps you should explain your problem a bit more, I have no idea what you're talking about. | September 13, 2003, 6:55 PM |
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. | September 13, 2003, 6:58 PM |
Grok | [quote author=OuTLawZGoSu link=board=5;threadid=2687;start=0#msg21134 date=1063479532] 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] Um, [code]Private Sub Slider1_Change() If Slider1.Value = 5 Then MsgBox "5" End Sub[/code] That couldn't be what you want. | September 13, 2003, 7:03 PM |