remym a écrit :
Bonjour
Voila une très bonne idée, car j'utilise un calendrier pour la date
merci très sympa
|
BONJOUR,
j'utilise un calendrier dans une fenetre avec la foncton "DTPicker1" et j'aimerais que lorsqu'elle est validée, qu'elle soit réécrite dans une autre feuille.
Or quand j'execute ma macro, la date affichée est le 0-janvier-1900. connaissez vous le probleme?
merci pour votre attention.
sous progs:
Private Sub CMD_ok_Click()
Dates = .DTPicker1.CalendarTitleBackColor
End sub
Private Sub DTPicker1_CallbackKeyDown(ByVal KeyCode As Integer, ByVal Shift As Integer, ByVal CallbackField As String, CallbackDate As Date)
End Sub
morceau de macro:
Sub Remplir_Atelier_Tournage()
Sheets("AtelierT" ).Activate
Range("A2" ).Select
Do Until ActiveCell.Value = ""
ActiveCell.Offset(1, 0).Select
Loop
ActiveCell.Value = Dates
End sub