DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub ComboBox1_Change()
Dim sabit As Integer
Dim imlec As Integer
sabit = ComboBox1.TextLength
imlec = ComboBox1.SelStart
If imlec < 4 Then
ComboBox1.Text = "1000"
ComboBox1.SelStart = sabit + 1
End If
End Sub
Private Sub UserForm_Initialize()
ComboBox1.Text = "1000"
End Sub