Link to home
Start Free TrialLog in
Avatar of Voodooman
Voodooman

asked on

looking for Time Picker

Hi

I am looking for a Time Picker Control (not datetime) where I can specify the minimum and maximum times that can be selected.

Any ideas?

Voodooman
SOLUTION
Avatar of mokule
mokule
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Ferruccio Accalai
Ferruccio Accalai
Flag of Italy image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Voodooman
Voodooman

ASKER

Hi

Sorry guys its not what I'm looking to do.

I could do this when I validate the data on the form.

When I load the popup, I want to prevent the users from selecting outside the limits of the day (that I set).

I don't want to work around it - this is a very nice high end piece of softare - hence I need to deal with the problem - not work around it!

Thanks

Voodooman
--> When I load the popup
I first place you just said '...where I can specify the minimum and maximum times that can be selected...'

Maybe if you give more info about your needs we can suggest something more than a 'workaround', but for what is knowed until now mokule suggestion is an answer, not just a workaround....

What do you mean with 'when i load the popup'? what is the situation?

F68 ;-)
Hello

Do you mean you want to prevent the user to choose date out of the range you woud like to set?

if so then use MinDate and MaxDate to set the range for the TDateTimePicker

uses
  DateUtils ;

procedure TForm1.FormCreate(Sender: TObject);
begin
  DateTimePicker1.MinDate := IncDay(Date,-5);
  DateTimePicker1.MaxDate := Date;
end;

Firstly - apologies if anyone thought I was being unappreciative of the answers - this is not the case.  I try to help with answers, and I have been on EE for 5 years - mostly in the VB area - where I have answered hundreds of questions and hopefully helped some people.

F68 - I was quite clear in what I asked for - its a time picker where I can select the maximum and minimum times that a user can select.

The popup is a modal form where the user edits appointments.  The appointments must only be possible within the working day.

When I save the record I can easily tell the user that the time the user has selected is outside of the day.

If I wanted to do that I would do it.  The professional approach is to prevent the user making the mistake in the first place.

I would like a control like Lotus Organiser (if you havent seen it you wouldnt know what I mean) - lathough any control that limited the day (e.g. 08:00 - 17:00) would do.

Lotus use a drop down slider to adjust the time - it is fast and efficient and is limited to the extent of the day setup.

I was hoping that one of the experts may have seen such a control - bearing in mind the large number of excellent controls that there are for Delphi - surely one of the main reasons for using Delphi.

Voodooman
1) As Mocule said, adjust it to Kind of dtkTime and you will be able to change only time. Then using methods ReplaceDate and ReplaceTime you can make the DateTime you need.

2) http://www.torry.net/pages.php?id=297
Hi

I have found a control that works for me - TADVSpinEdit from http://www.TMSSoftware.com.  Luckily I have bought this already as part of a package (I think it is also on the Delphi7 Companion CD).

This spin edits the time.

With this, the user cannot type into the box - they can only increment the time up and down with the spin button.

This has the advantage that the user can see when they have reached the top or bottom of the limit - without having to be told with a message box.

Using a simple bit of code under the change event the time spins only with the limits.

if strtotime(spintime.Text)<strtotime('10:00') then
        spintime.Text:='10:00';

     if strtotime(spintime.Text)>strtotime('17:00') then
        spintime.Text:='17:00';

By doing this I can make sure that users cannot set appointments out of the day without nagging them.  It also allows different ranges to be used on different days (e.g. Half Day on Saturday).

I will split the points between Mokule and F68 - thanks for the idea, and thanks all for the help!

Voodoman