cint(in_Config(“TimeoutUltraLongest”)) >> which has value as 2400000 in config excel
Giving below issue:
cint(in_Config(“TimeoutUltraLongest”)) >> which has value as 2400000 in config excel
Giving below issue:
Hi @anjasing ,
It seems there is an additional space comming after "2400000 " .
You can use trim
cint(in_Config(“TimeoutUltraLongest”).ToString.trim)
Hello @anjasing ,
It would be better you can check the value of Cint(in_Config(“TimeoutUltraLongest”)) in debug mode or print it in a message box. Also check once in your config file, by mistake you have added any space after the value. If it’s there remove it using Trim.
Thank you so much
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.