You would have to write some VB code to do this. For instance:
- Add a TextBox to the form
- Add a Button to the form
- Double the button to get back to the code
- Add this code
Dim s() As String = TextBox1.Text.Split(":")
Dim TotalSeconds As Integer
'* Make sure 3 items were entered
If s.Length = 3 Then
Dim v As Double
If Double.TryParse(s(0), v) Then
TotalSeconds += v * 3600
End If
If Double.TryParse(s(1), v) Then
TotalSeconds += v * 60
End If
If Double.TryParse(s(2), v) Then
TotalSeconds += v
End If
EthernetIPforCLXCom1.Write("TagName",cstr(TotalSeconds))
End If