pessoal na rotina abaixo preciso que apos verificar se o campo ( TextBox5.Text = "" Then
MsgBox "Endereço Imcompleto") foi preenchido com algum dado, ele continue o codigo. mas não está dando certo.
o codigo usado foi esse
Private Sub commandButton1_Click()
If ComboBox2.Value = "Origem" Then
If TextBox5.Text = "" Then
MsgBox "Endereço Imcompleto"
Else
sCriterioDaBusca = TextBox5.Text
Range("i13").Value = TextBox3.Value
Range("H16").Value = TextBox4.Value
Range("I15").Value = TextBox1.Value
Range("m13").Value = TextBox2.Value
Range("i14").Value = TextBox5.Value
Range("k12").Value = ComboBox3.Value
Sheets("Relatorio de corridas").Activate
Rows("2:2").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Range("A2").Select
ActiveCell.Offset(0, 2).Value = TextBox3.Text
ActiveCell.Offset(0, 4).Value = ComboBox3.Text
Sheets("Tela Principal").Activate
End If
Else
If TextBox5.Text = "" Then
MsgBox "Endereço Imcompleto"
Else
sCriterioDaBusca = TextBox5.Text
Range("i18").Value = TextBox3.Value
Range("i21").Value = TextBox4.Value
Range("i20").Value = TextBox1.Value
Range("o15").Value = TextBox2.Value
Range("i19").Value = TextBox5.Value
Sheets("Relatorio de corridas").Activate
Range("A2").Select
ActiveCell.Offset(0, 3).Value = TextBox3.Text
Sheets("Tela Principal").Activate
End If
End If
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
TextBox4.Text = ""
TextBox5.Text = ""
txt_Procurar = ""
ComboBox2.ListIndex = 1
End Sub
Após o If TextBox5.Text = "" Then MsgBox "Endereço Imcompleto" coloquei um Exit Sub. mas quando o textbox5 esta com os dados certos o codigo nao continua por algum motivo q eu desconheço
Postado : 07/12/2011 11:25 pm