DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub auto_open()
'Coder By Security 2011
If Date > CDate("18/03/2011") Then
Range("D5:BO5").Select
Selection.Interior.ColorIndex = 3
Selection.Font.ColorIndex = 2
Range("F5").Select
End If
End Sub
Sub auto_open()
'Coder By Security 2011
If Date > CDate("18/03/2011") Then
Range("D5:BO5").Select
Selection.Interior.ColorIndex = 3
Selection.Font.ColorIndex = 2
Range("F5").Select
MsgBox "Servis tarihi Geçti", vbCritical, "UYARI"
End If
End Sub
Tarih 18 mart 2011 i geçtiginde d5 ve bo5 hücreleri renklenecektir...
Kod:Sub auto_open() 'Coder By Security 2011 If Date > CDate("18/03/2011") Then Range("D5:BO5").Select Selection.Interior.ColorIndex = 3 Selection.Font.ColorIndex = 2 Range("F5").Select End If End Sub
veya mesajla bildirim ilede olabilir...
Kod:Sub auto_open() 'Coder By Security 2011 If Date > CDate("18/03/2011") Then Range("D5:BO5").Select Selection.Interior.ColorIndex = 3 Selection.Font.ColorIndex = 2 Range("F5").Select MsgBox "Servis tarihi Geçti", vbCritical, "UYARI" End If End Sub