I'm a beginner, and I'm sure this is simple, but I can't figure it out. The code below just names the folder TodayDate.
Private Sub cmdMkDir_Click()
Dim TodayDate As Date
TodayDate = Date
MkDir "c:\Todaydate"
End Sub
Any ideas on how to get it to do this?
Private Sub cmdMkDir_Click()
Dim TodayDate As Date
TodayDate = Date
MkDir "c:\Todaydate"
End Sub
Any ideas on how to get it to do this?