DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub SpinButton1_SpinDown()
On Error Resume Next
If Me.TextBox1.Value = 2022 Then
MsgBox "2022 'den Az Olamaz"
Exit Sub
End If
Me.TextBox1 = Me.TextBox1 - 1
End Sub
Private Sub SpinButton1_SpinUp()
On Error Resume Next
If Me.TextBox1.Value = 2032 Then
MsgBox "2032 'den Çok Olamaz"
Exit Sub
End If
Me.TextBox1 = Me.TextBox1 + 1
End Sub
Private Sub UserForm_Initialize()
Me.TextBox1.Value = "2022"
End Sub

Private Sub SpinButton1_SpinDown()
On Error Resume Next
If Me.TextBox1.Value = 2022 Then
MsgBox "2022 'den Az Olamaz"
Exit Sub
End If
Me.TextBox1 = Me.TextBox1 - 1
End Sub
Private Sub SpinButton1_SpinUp()
On Error Resume Next
If Me.TextBox1.Value = 2032 Then
MsgBox "2032 'den Çok Olamaz"
Exit Sub
End If
Me.TextBox1 = Me.TextBox1 + 1
End Sub
Private Sub Worksheet_Activate()
Me.TextBox1.Value = "2022"
End Sub