Not sure what it's doing, but its not adding any records, looks to be doing nothing. I know im missing the right variable there where the ????'s are, what's that supposed to be? If I need to add soemthing else please let me know.
VB.NET:
Private Sub MenuItem3_Click_1(ByVal txtLNAME As String, ByVal txtFNAME As String)
Dim newRow As DataRow = DataSet12.Tables("ProspectTable").NewRow()
newRow("LastName") = txtLNAME
newRow("FirstName") = txtFNAME
DataSet12.Tables("ProspectTable").Rows.Add(newRow)
OleDbConnection.Open()
????.Update(DataSet12, "ProspectTable")
OleDbConnection.Close()
End Sub