What type of control is being used in the file you download?
Where is it located? Userform or worksheet?
When you select it in design view what does it say in the first line of it's property sheet?
It should be the name of the control followed by it's type.
[/COLOR][/FONT]
[FONT=Courier New][COLOR=blue]Private Sub DTPicker1_CallbackKeyDown(ByVal KeyCode As Integer, ByVal Shift As Integer, ByVal CallbackField As String, CallbackDate As Date)[/COLOR][/FONT]
[FONT=Courier New][COLOR=blue]End Sub[/COLOR][/FONT]
[FONT=Courier New]Private Sub InsertButton_Click()[/FONT]
[FONT=Courier New]ActiveCell = DTPicker1.Value[/FONT]
[FONT=Courier New]ActiveCell.Columns.EntireColumn.AutoFit[/FONT]
[FONT=Courier New]End Sub[/FONT]
[FONT=Courier New]Private Sub UserForm_Initialize()[/FONT]
[FONT=Courier New]DTPicker1.Value = Date[/FONT]
[FONT=Courier New]End Sub[/FONT]
[FONT=Courier New]
[FONT=Courier New]Option Explicit[/FONT]
[FONT=Courier New]Private Sub Calendar1_Click()[/FONT]
[FONT=Courier New]End Sub[/FONT]
Pedie
It sounds like a date picker control, but I can't be 100% sure - if you tried what I suggested then I'd be more sure.
Anyway, let's say it is - if it works in the downloaded workbook then you should be able to use it in your own workbooks.
If you didn't have it the control then that workbook wouldn't work, or that part of it anyway, and you might get errors and other problems.
The full name of it is Microsoft Date and Time Picker Control 6.0 and it's part of the Microsoft Windows Common Controls-2 6.0 (mscomct2.ocx).
Under Additional Controls you should find it with the first name and when you add choose it there a reference will be added to the 2nd name.
If you goto Additonal Controls... and select Selected Items only you should see it near the top of the list.
If you goto Tools>Reference you should see the reference mentioned above below all the usual references.
Can you take a look and see if you have those things in the downloaded workbook?
PS If you do find them take a note of the path to mscomctl2.ocx