Zoran,
Installed version 1.3 but on an older project I now have a compile error saying: Error: identifier idents no member "Time"
The statement looks like:
strVluchtduur := TimeToStr(DB_Vluchtduur.Time);
DB_Vluchtduur is a DBZVDateTimePicker field showing only time (TimeDisplay tdHM).
Any idea what I'm doing wrong here?
Oh, yes, I know.

In version 1.0 of the control, property Time was accidentaly published in DBZVDateTimePicker control. The properties Date and Time should not be published in a DB aware control, so the property was removed in version 1.1 (take a look at ChangeLog.txt file enclosed with the package). Also, take a look at DBZVDateTimePicker.pas source file, comment on line 105, still there.
The purpose of a DB-aware control is user's interaction with a DB field. If you want to read or set a DB field in code, then you don't need a DB-aware contrlol, but you should use field object directly. That was my unintentional mistake to publish Time property in version 1.0 of DBZVDateTimePicker. This mistake was fixed in version 1.1 by removing this property.
I'm sorry for the incovinience. However, as I beleive that you use this control tied to a DB field (well, that's what it is for, or non-db ZVDateTimePicker should be used), you can use:
strVluchtduur := TimeToStr(Field1.AsDateTime);
where Field1 is the field to which DB_Vluchtduur is tied to.
Or:
strVluchtduur := TimeToStr(DB_Vluchtduur.DataSource.DataSet.FieldByName(DB_Vluchtduur.DataField).AsDateTime);
I hope this was helpful.
Zoran