Skip to main content

AccessTr.neT


Formda Veri Arama Problemi

av.fatihberber
av.fatihberber
4
1513

Formda Veri Arama Problemi

#3
Kod:
Private Sub aragorun_Change()
Dim vSearchString, sqlwhere As String
vSearchString = Me.aragorun.Text
Me.aragizli.Value = vSearchString

    
Select Case Me.Çerçeve130.Value
    Case 1
        sqlwhere = "  tablo_uye_listesi.[ADI] like '" & "*" & Me.aragizli.Value & "*" & "' order by tablo_uye_listesi.[ADI] ;"
    Case 2
        sqlwhere = " tablo_uye_listesi.[SOYADI] like '" & "*" & Me.aragizli.Value & "*" & "' order by  tablo_uye_listesi.[SOYADI] ;"
   Case 3
        sqlwhere = " tablo_uye_listesi.[TC KİMLİK NO] like  '" & "*" & Me.aragizli.Value & "*" & "' order by tablo_uye_listesi.[TC KİMLİK NO] ;"
   
End Select


Me.bulunan.RowSource = "tablo_uye_listesi.[TC KİMLİK NO], tablo_uye_listesi.[ADI], tablo_uye_listesi.[SOYADI], tablo_uye_listesi.[TC KİMLİK NO], FROM tablo_uye_listesi where " & sqlwhere


End Sub



Private Sub bulunan_DblClick(Cancel As Integer)
DoCmd.OpenForm "uye_bilgi_formu", , , "TC KİMLİK NO=" & Me.bulunan.Column(3)


End Sub

Kodlarım bu şekilde ama yine çalışmıyor.
av.fatihberber, 11-06-2010 tarihinden beri AccessTr.neT Üyesidir.
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Formda Veri Arama Problemi - Yazar: av.fatihberber - 26/05/2016, 13:35
Cvp: FORM ARAMA TAKILDIM - Yazar: atoz112 - 26/05/2016, 14:46
Cvp: Formda Veri Arama Problemi - Yazar: av.fatihberber - 26/05/2016, 15:20
Cvp: Formda Veri Arama Problemi - Yazar: atoz112 - 26/05/2016, 15:37
Cvp: Formda Veri Arama Problemi - Yazar: av.fatihberber - 26/05/2016, 16:52
Task