I would like a script that splits the following textbox1. value into 3 parts and puts each value in a textbox.
textbox1.value= 1:26:35
splits it as follows
textbox2.value = 1
textbox3.value = 26
textbox4.value = 35
the value could change though to
textbox1.value = 14:26:35 but will only ever have 2 values between each lot of : so it would never be 143:26:35 etc...
textbox1.value= 1:26:35
splits it as follows
textbox2.value = 1
textbox3.value = 26
textbox4.value = 35
the value could change though to
textbox1.value = 14:26:35 but will only ever have 2 values between each lot of : so it would never be 143:26:35 etc...