Arkadaşlar ben aşağıdaki kod ile textbox1 e girmiş olduğum veriyi accessdeki giris1 sütununa kayıt ettirebiliyorum. ancak textbox1 e aynı veriyi tekrar girdiğimde ise bir alt satıra kayıt işlemini yapamıyorum..sitedeki bütün örnekleri inceledim ve hepsinde de accessin 1.sütununa kayıt işlemi aynı değer tekrarlanmayacak şekilde yapılmış..problemin nerden kaynaklandığını bulamadım.içinden çıkamadım..yardımlarınızı bekliyorum
Private Sub CommandButton1_Click()
Set RS = CreateObject("ADODB.recordset")
strSQL = "SELECT * FROM [MyTable] Where giris1='" & TextBox1 & "'"
RS.Open strSQL, adoCN, 1, 3
If RS.RecordCount = 0 Then
RS.AddNew
RS("giris1") = TextBox1
RS("giris2") = TextBox2
RS("Tel") = TextBox3 RS.Update
TextBox1 = Empty
TextBox2 = Empty
End If
RS.Close
RefreshDB
Set kayit = Nothing
End Sub
Private Sub CommandButton1_Click()
Set RS = CreateObject("ADODB.recordset")
strSQL = "SELECT * FROM [MyTable] Where giris1='" & TextBox1 & "'"
RS.Open strSQL, adoCN, 1, 3
If RS.RecordCount = 0 Then
RS.AddNew
RS("giris1") = TextBox1
RS("giris2") = TextBox2
RS("Tel") = TextBox3 RS.Update
TextBox1 = Empty
TextBox2 = Empty
End If
RS.Close
RefreshDB
Set kayit = Nothing
End Sub