Yes but you have to do some VBA code writting<br>
The simplest way is put the calendar control on your form and make it in-visible <br>
in Properties of calendar "Visible" = NO<br>
then create button to view your calendar thingy<br>
In the "On_click" event of the button put your Calendar.visible = true<br>
<br>
here is my example<br>
------------------------------<br>
Private Sub cmd_PickADate_Click()<br>
On Error GoTo Err_cmd_PickADate_Click<br>
<br>
ActiveXCtl12.Visible = True<br>
ActiveXCtl12.Value = Format(Now, "mm/dd/yy"

<br>
'ActiveXCtl12.Value = Format(me!SomeDate, "mm/dd/yy"

'< Specific date of a textbox on your form<br>
<br>
Exit_cmd_PickADate_Click:<br>
Exit Sub<br>
<br>
Err_cmd_PickADate_Click:<br>
MsgBox Err.Description<br>
Resume Exit_cmd_PickADate_Click<br>
<br>
End Sub<br>
-----------------------<br>
Then I'm not sure which event close's it gracefully I'm working on that now.<br>
The Exit event only trips when you click on some other item on your form.<br>
But when you find it add this code there<br>
<br>
Private Sub ActiveXCtl12_Exit(Cancel As Integer)<br>
Me!Text14.SetFocus<br>
Me!Text14 = ActiveXCtl12.Value<br>
ActiveXCtl12.Visible = False<br>
End Sub<br>
<p> DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br>