CRIAR UMA IF TEXTBOX1.TEXT OR TEXTBOX2.TEXT

HAWER99 05/07/2013 11:58:33
#425607
Olá Galera! Estou fazendo um programa, e não me lembro como faz para fazer essa: If TextBox1.Text Or TextBox2.Text is not = [Ô][Ô] Then

Eu quero que, se textbox1 ou textbox2 não for igual a [Ô][Ô] Then

Eu fiz desse jeito:

Citação:

If TextBox1.Text Or TextBox2.Text is not = [Ô][Ô] Then
webclient2.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
Timer1.Start()
End If



O erro dá no =: Expressão Esperada.

Obrigado!
KERPLUNK 05/07/2013 12:07:52
#425609
Amigo, aconselho estudar melhor sintaxe básica.

if TextBox1.Text = [Ô][Ô] or TextBox2.Text = [Ô][Ô] then
....

JABA 05/07/2013 12:09:42
#425610
Faça assim:

If TextBox1.Text <> [Ô][Ô] OrElse TextBox2.Text <> [Ô][Ô] Then
webclient2.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
Timer1.Start()
End If
JABA 05/07/2013 12:14:19
#425612
Assim você garante que as duas caixas de texto tenham algumas coisa dentro:

If TextBox1.Text <> [Ô][Ô] AndAlso TextBox2.Text <> [Ô][Ô] Then
webclient2.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
Timer1.Start()
End If
MAXGUIMEL 05/07/2013 12:19:57
#425613
Pode ser feito:

[ô]Assim

if TextBox1.Text <> [Ô][Ô] and TextBox2.Text <> [Ô][Ô] Then

Seu codigo aqui

End If

[ô]ou assim

if TextBox1.Text <> [Ô][Ô] or TextBox2.Text <> [Ô][Ô] Then

Seu codigo aqui

End If
JOSEC 05/07/2013 13:05:15
#425616
A Melhor Forma, e
IF TextBox1.Text = String.Empty and TextBox2.Text = String.Empty then
END If

and pode ser trocar para or

Seu código deu error, por a instrução do textbox1 ta faltado, você só passo a instrução correta para o textbox2
Por Exemplo
IF Textbox1.text = [Ô]CONDIÇAO[Ô] and TextBOx2.Text = [Ô]CODICAO[Ô] then
End IF
Faça seu login para responder