Question
May 24, 2007 at 05:38 PM
pritika

vb.net coding

by pritika . Updated 19 years, 2 months ago

can anyone please convert the following code into vb.net code??

private void textBox1_Validating(object sender, System.EventArgs e)
{
if (textBox1.Text.Length==0)
{
MessageBox.Show(“Enter Your Name Please”);
textBox1.Focus();
}

else
{
bool iscorrect = true;

for(int i=0;i

This discussion is locked

All Comments