Hello again,

I found a way of doing what Im looking for:

Private Sub UserForm_Initialize()
Me.ComboBox1.AddItem ("15:00")
Me.ComboBox1.AddItem ("15:05")
Me.ComboBox1.AddItem ("15:10")
Me.ComboBox1.AddItem ("15:15")
End Sub
The only thing is that I need to put all the hours from a day (every 5min difference) and its a lot of lines of code to do it this way...

Is there any alternative of doing this?

Regards,


pezalmendra