TextBox çalışmıyor

Katılım
29 Aralık 2005
Mesajlar
159
Excel Vers. ve Dili
Microsoft Office Excel 2003 TR
neden clısmıyor bir turlu anlaymadım
 
Katılım
17 Haziran 2006
Mesajlar
348
Excel Vers. ve Dili
2003 - TR / 2007 - TR
Selamlar..

Kodu aşağıdaki gibi değiştiriniz...
Kod:
Private Sub TextBox1_Change()
  On Error Resume Next
    METİN1 = TextBox1.Value
    Set FC2 = Range("B:B").Find(What:=METİN1)
    Application.Goto Reference:=Range(FC2.Address), Scroll:=False
    Selection.AutoFilter Field:=2, Criteria1:="*" & TextBox1.Value & "*"
    If METİN1 = "" Then
    Selection.AutoFilter Field:=2
    End If
End Sub
 
Katılım
17 Haziran 2006
Mesajlar
348
Excel Vers. ve Dili
2003 - TR / 2007 - TR
Rica ederim, iyi çalışmalar...
 
Üst