Hello, I have searched countless threads and websites and none of them answer my problem I can not figure out. Anyways, I am developing a program that basically converts the amount of numbers in between numbers in like tenths or hundredths... Say 1 to 0 in tenths. 10 counts. Okay? I have that down but I added a custom number option but I do not know how to convert the input(they type it in a text box) into a decimal. Say they input 5, I want the program to read that as 0.5 or if they choose 4829, I want the program to read that as .4829 . I do not know how to do this. I was testing it with a MessageBox.Show(test) and I did something like Dim test As Decimal = 5 and the msgbox output was 5, not 0.5 . Any suggestions?
↧