Another quick question..when i hit the "Update button" i want my caption to say there first and last name + Updated.

VB Code:
  1. Dim strSql As String
  2. '---- create an sql statement that returns no data (as false <> true)
  3.     strSql = "SELECT [First_Name], [Last_Name], [Age] " _
  4.            & "FROM [JoeFox] " _
  5.            & "WHERE 1 = 2"
  6. '---- Open the recordset
  7.     Set rst = New ADODB.Recordset
  8.     rst.Open strSql, oConn, 3, 3, 1 'static,optimistic,adCmdText
  9.  
  10.     AddUser = True
  11.     With rst
  12.         .AddNew 'adding new record
  13.         .Fields("First_Name") = sFirstName
  14.         .Fields("Last_Name") = sLastName
  15.         .Fields("Age") = SAge
  16.         .Update 'this updates the recordset
  17.     End With
  18.     Label2.Caption = "sFirstName" + " " + "sLastName" + "Entered..." ' THIS JUST PRINTS THE WORKS sFirstname :(
  19.  
  20.     ' Closes the Record set so that it dosent us up memory space
  21.     rst.Close
  22.     Set rst = Nothing
  23.  
  24. End Function