- Katılım
- 23 Ağustos 2005
- Mesajlar
- 4,651
- Excel Vers. ve Dili
- Excel : 2010
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub Bul()
Dim Ofis_Dili As Byte
Ofis_Dili = Application.International(xlCountryCode)
Application.CommandBars.FindControl(ID:=1849).Execute
Select Case Ofis_Dili
Case 1 'İngilizce Ofis Kullananlar
SendKeys "%t", True
SendKeys "{tab}{enter}", True
SendKeys "{tab 2}", True
SendKeys "{down 2}{enter}", True
SendKeys "+{tab 2}", True
SendKeys "Aranan", True
SendKeys "{enter}"
Application.Wait Now + TimeSerial(0, 0, 2)
SendKeys "{Esc 2}"
Case 90 'Türkçe Ofis Kullananlar
SendKeys "%k", True
SendKeys "{tab}{enter}", True
SendKeys "{tab 2}", True
SendKeys "{down 2}{enter}", True
SendKeys "+{tab 2}", True
SendKeys "Aranan", True
SendKeys "{enter}"
Application.Wait Now + TimeSerial(0, 0, 2)
SendKeys "{Esc 2}"
End Select
End Sub