Re: LOGIN email passwords
- From: "Downie" <TrickDownie@xxxxxxxxx>
- Date: 27 Mar 2006 07:13:00 -0800
Actually!
Any suggestions on how to get the the rst! results back to the users
inbox???
Private Sub Command32_Click()
Dim SQLString As String
Dim cnn As New ADODB.Connection
Dim cmd As New ADODB.Command
Dim rst As New ADODB.Recordset
DoCmd.SetWarnings False
Set cnn = CurrentProject.Connection
Set cmd.ActiveConnection = cnn
SQLString = "SELECT users.Login, users.Password "
SQLString = SQLString & "From users "
SQLString = SQLString & "WHERE [Login] = """ & Me![Login] & """;"
cmd.CommandText = SQLString
rst.CursorLocation = adUseClient
rst.Open cmd, , adOpenKeyset, adLockOptimistic
'''' MsgBox (rst.GetString)
If rst.RecordCount > 0 Then
DoCmd.SendObject
End If
End Sub
.
- References:
- LOGIN email passwords
- From: Downie
- Re: LOGIN email passwords
- From: TC
- LOGIN email passwords
- Prev by Date: Re: Combo Box problems
- Next by Date: Re: Filter in my form
- Previous by thread: Re: LOGIN email passwords
- Next by thread: Re: Filter in my form
- Index(es):
Relevant Pages
|