|
Postada em 21/09/2006 12:01 hs
erro fill: Propriedade SelectCommand.Connection não foi definidada Public Sub Login(ByVal LoginUsername As String, ByVal LoginSenha As String)Dim Tabela As New DataTableDim SQL As StringSQL = "Select Username, Senha From Tbl_Usuarios Where Username = '" & LoginUsername & "' and Senha = '" & LoginSenha & "'"TryAdp = New OleDbDataAdapter(SQL, Conn)Adp.Fill(Tabela) If Tabela.Rows.Count > 0 ThenUsuario = LoginUsername My.Response.Redirect("http://www.cade.com.br")ElseMsgBox( "Nome de usu rio ou senha inv lida", MsgBoxStyle.Information, "Aviso!")End IfCatch ex As ExceptionMsgBox(ex.Message) End TryEnd SubAlguém tem alguma sugestão?
|
TÓPICO EDITADO
|
|
|
|
|
|
Postada em 21/09/2006 13:34 hs
Cara, num manjo muito mas tenta assim... Public Sub Login(ByVal LoginUsername As String, ByVal LoginSenha As String) Dim Tabela As New DataTable Dim SQL As String Dim ds As DataSet SQL = "Select Username, Senha From Tbl_Usuarios Where Username = '" & LoginUsername & "' and Senha = '" & LoginSenha & "'"TryAdp = New OleDbDataAdapter(SQL, Conn)ds = New DataSet Adp.Fill(ds,Tabela) If Tabela.Rows.Count > 0 Then Usuario = LoginUsername My.Response.Redirect("http://www.cade.com.br")ElseMsgBox( "Nome de usu rio ou senha inv lida", MsgBoxStyle.Information, "Aviso!")End IfCatch ex As ExceptionMsgBox(ex.Message) End TryEnd Subtente dar uma olhada na parte em vermelho... at+
|
|
|
|