i wanted to put a Exit for statment. how can i put it
Public Class Form3
Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim i As Integer
Dim Name As String
For i = 1 To 10
Name = InputBox("Enter the Name")
Exit For Name="Done"
Next
End Sub
End Class