Evet Arkadaşlar 1. Sınıflar yani Vb Yeni Başlıyanlar Bole Şeylerle Kendinizi Geliştirebilirsiniz. Cok Konusmadan Baslıyalım.

İlk once autoitx3.dll İndiriyoruz Buyrun;

http://s2.dosya.tc/AutoItX3.zip.html

vb/Standart Exe acıyoruz.

Proje/Reference Bolumunden Autoitx3 Libary Bulup İşaretliyoruz.

Form Sağ tıklıyoruz Wiew Code tıklıyoruz,we bu kodu yapıştırıyoruz.En Ust bolume.

Dim Komut As New AutoItX3Lib.AutoItX3

We Daha Sonra


FORM Bolumune 1 Adet Checkbox 1 Adet Combox 1 adet Timer Ekliyoruz.

Timer Cift Tıklayıp Code Bolumune Ekliyoruz.





If Combo1.Text = 1 then
Komut.Send ("1")
end If
If Combo1.Text = 2 then
Komut.Send ("2")
End If
If Combo1.Text = 3 then
Komut.Send ("3")
End If
If Combo1.Text= 4 then
Komut.Send ("4")
End If
If Combo1.Text = 5 then
Komut.Send ("5")
End If
End Sub

Ben Buraya 5 Adet yaptım Siz bu Şekilde Geliştirebilirsiniz.
Ve Daha Sonra Combo1 Tıklıyoruz Sağ Koşedeki properties bolumunden List buluyoruz alt alta Sıralıyoruz.
1
2
3
4
5
Bu bole gider.

Daha Sonra Ekledigimiz Check Sağ Tıklıyoruz Bu Kodları Yapıştırıyoruz.

Private Sub Check1_Click()
If Check1.Value = 1 then
Timer1.Enabled = True
Check1.Caption = " Atak Başlatıldı"
else
Timer1.Enabled = False
Check1.Caption = " Atak Durduruldu"
End If
End Sub

Son Olarak Timerin Propeties Den Invertal 1000 yapın Enabled De False Yapınız.
__________________