DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub auto_open()
If [a1] = "" Then [a1] = "1"
If [a1].Value < 10 Then [a1] = [a1] + 1
If [a1].Value = 10 Then
MsgBox "10 defa açıldı"
ActiveWindow.Close True
End If
ActiveWorkbook.Save
End Sub
Sub Auto_Close()
ThisWorkbook.Save
End Sub
Sub auto_open()
ActiveSheet.Unprotect ("dosya koruma şifresi")
If [a1] = "" Then [a1] = "1"
If [a1].Value < 5 Then [a1] = [a1] + 1
If [a1].Value = 5 Then
MsgBox "Kullanım Süreniz Doldu"
ActiveWindow.Close True
End If
ActiveSheet.Protect ("dosya koruma şifresi")
End Sub