Hrqls
Posts: 3
|
| Posted: 04/25/2008, 12:18 AM |
|
hi,
this is my first post on this forum, so please gentle with me ;)
i inherited some php code from a former colleague
he generated that code in Code Charge Studio 2.3.2.24
the page contains some textboxes which contain starting and stopping times for certain actions
at the moment the maximum time in those textboxes is 23:59:59
i would like to change that to a maximum of 24:00:00
is that possible ?
the code which is used to create the textboxes is :
$this->START1 = new clsControl(ccsTextBox, "START1", "START1", ccsDate, Array("HH", ":", "nn", ":", "ss"));
$this->STOP1 = new clsControl(ccsTextBox, "STOP1", "STOP1", ccsDate, Array("HH", ":", "nn", ":", "ss"));
|