Protected Sub txtstate_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Try
If Me.txtstate.Text = "AE" Or Me.txtstate.Text = "AA" Or Me.txtstate.Text = "AP" Then
If TxtdelDoc.Text <> "" And TxtFromCountry.Text <> "" And txtcountry.Text <> "" Then
btnInternational.Enabled = True
End If
Else
btnInternational.Enabled = False
End If
Me.txtph.Focus()
Catch ex As Exception
End Try
End Sub
|