HELP!! How to prevent Input of Alphabets in the code below >>>
Thanks Guys Problem Solved For That Part
--------------------------------------------------------- POST EDITED BY HanneSThEGreaT to reflect original question
---------------------------------------------------------
Do
StudentDetails(X).English = InputBox("Please Enter English Marks")
If StudentDetails(X).English < 0 Or StudentDetails(X).English > 100 Then
MessageBox.Show("Invalid input!""Please enter a value not More then 100 or Less then 0!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Loop While (StudentDetails(X).English < 0 Or StudentDetails(X).English > 100)
Bookmarks