DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ComboBox1_change()
a = ComboBox1.List(ComboBox1.ListIndex, 1)
Sheets(a).Select
End Sub
Private Sub Workbook_Open()
Sheets("VERİ").ComboBox1.ListFillRange = "VERİ!B18:c23"
End Sub
Private Sub ComboBox1_change()
If ComboBox1.ListIndex = -1 Then Exit Sub
a = ComboBox1.List(ComboBox1.ListIndex, 1)
Sheets(a).Select
End Sub
Private Sub Workbook_Open()
Sheets("VERİ").ComboBox1.ListFillRange = "VERİ!B18:c23"
Sheets("VERİ").ComboBox1.ColumnCount = 2
Sheets("VERİ").ComboBox1.BoundColumn = 2
End Sub
Private Sub ComboBox1_Change()
If ComboBox1.Value <> "" Then Sheets(ComboBox1.ListIndex + 2).Select
End Sub
Private Sub ComboBox1_DropButtonClick()
ComboBox1.ListFillRange = "B19:B21"
End Sub