- Katılım
- 30 Kasım 2006
- Mesajlar
- 625
- Excel Vers. ve Dili
- OFFICE 2003 Türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Dim act As Object
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
act = MonthView1.Value
End Sub
Private Sub tarih1_Enter()
MonthView1.Visible = True
Set act = tarih1
tarih2 = ""
tarih3 = ""
End Sub
Private Sub tarih2_Enter()
MonthView1.Visible = True
Set act = tarih2
tarih1 = ""
tarih3 = ""
End Sub
Private Sub tarih3_Enter()
MonthView1.Visible = True
Set act = tarih3
tarih1 = ""
tarih2 = ""
End Sub
Dim act As Object
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
act = Format(DateClicked, "dd/mm/yyyy")
End Sub
Private Sub MonthView1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
MonthView1.Visible = False
End Sub
Private Sub tarih1_Enter()
Set act = tarih1
End Sub
Private Sub tarih2_Enter()
Set act = tarih2
End Sub
Private Sub tarih3_Enter()
Set act = tarih3
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
MonthView1.Visible = True
End Sub