Dear esteemed wxPerl experts

Is Wx::DateTime fully implemented in WxPerl?

These three statements work fine:
use Wx::DateTime;
#...
$date_to_wx = Wx::DateTime->new;
# ...
$time_from_ctrl->SetValue($time_from_wx); # (where $time_from_ctrl is a 
Wx::TimePickerCtrl)
# ...
$time_from_ctrl->GetValue($time_from_wx);

But, when trying one of these:
$timeformat = '%T';
#...
$time_from_wx = Wx::DateTime->ParseFormat('0:0:0', $timeformat);
or trying: 
$time_from_wx = Wx::DateTime->ParseTime('0:0:0');

it bumps with: "Can't locate object method "ParseFormat" via package 
"Wx::DateTime" at ... line ..."
(Same for ParseTime).
ParseTime and ParseFormat are wxWidgets DateTime methods.

Am I missing something, or calling with a wrong syntax?
Where can you find all implemented methods for wxPerl Wx::DateTime?

Many TIA

Helen

Reply via email to