Pessoal estou com um problema no método get, usando o netbeans 6.5.1 com mobility pack 2.2, tenho as seguintes linhas de código:
if(TfLogin.getString().equals(“JF”) && TfSenha.getString().equals(“123”)){
// Vamos indicar para onde vai a tela caso a Senha esteja correta
getDisplay().setCurrent(get_Senha_Aceita());
}
else{
// Vamos indicar para onde vai a tela caso a Senha esteja errada
getDisplay().setCurrent(get_Senha_Incorreta());
}
onde nas linhas:
getDisplay().setCurrent(get_Senha_Aceita());
getDisplay().setCurrent(get_Senha_Incorreta());
esta ocorrento o erro “Cannot find symbol”, as linhas foram extraidas de um tutorial para netbeans 5.0 e estou usando o 6.5.1…
onde Senha_Aceita e Senha_Incorreta são dois componentes Alert…
Se alguem puder ajudar desde ja agradeço…