Dears,
Possible To Convert String wrtiien “xx:yy:zz” To TimeSpan “hh:mm:ss” to be used as delay in “Delay” Activity ? Thx
Dears,
Possible To Convert String wrtiien “xx:yy:zz” To TimeSpan “hh:mm:ss” to be used as delay in “Delay” Activity ? Thx
Try using this @hsendel
Dim timeCheckin As String = "HH:mm:ss"
ts = TimeSpan.Parse(timeCheckin)
Hi
Well if that string xx:yy:zz has values like 00:00:00 or numerical then it can be directly passed as like this
Convert.ToTimespan(yourvariable)
Cheers @hsendel
Hi Palaniyappan
Please find error message:
Excellent!!! Palaniyappan as usual
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.