My XLS sheet has 790527915 stored as text format.
My Data Source table shows the number (790527915) stored as text, though I import the Excel sheet every time I run it with the new test data..
At run-time, when I "GetValue" from the data source (below), I get "7.90528e+008" as a string text.
string paramValue;
paramValue = GetDataSource(dataSheetName).GetValue(templateRow,paramName).ToString();
I'm sure it's something stupid. I didn't have this problem in QTP, but this API Test side of UFT is driving me crazy!
--Jan