Click here to Skip to main content
15,793,535 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hey , Thanks for clicking , I am making a game and I ran into a stump , I am trying to make a points system where if you have the right amount , you can buy as many as you want of it , I tried this :
VB
If Game.NumericUpDown1.Contains("100") Then

But it just displays as an error , if someone can please tell me how to use the "Contains" variable correctly , that'd be much appreciated :)
Posted

1 solution

Try
If Game.NumericUpDown1.Value >= 100 Then
 
Share this answer
 
Comments
Inpec Coding 14-Jul-15 21:19pm    
Thank you so much :) I hope you are helping hundreds of other people out there , you are a real help :)
OriginalGriff 15-Jul-15 7:46am    
:laugh:

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900