Hi Anish,
It is possible to set cursor at any position dynamically at run time using following code.
private Sub Text1_GotFocus()
Text1.SelStart = number
End Sub
in place of number you have to specify position in text box.
It will work for you..
Ok….