QTP调用.NET framework类库来实现关于时间的计算和格式转换

通过DotNetFactory来调用.net framework的类库,可以调用一些VBScript所不具备的一些关于时间的计算和格式转换,并且代码量很少。
'create new DataTime object by DotNetFactory.CreateInstance
set oDate = DotNetFactory.CreateInstance("System.DateTime").Parse("2-18-2013")

'caculate the target date
set oNextDay = oDate.AddDays(1)

'convert to the expected date format
strDateConvert = oNextDay.tostring("MM/dd/yyyy")
msgbox strDateConvert

'get current date and time
CurrentTime = DotNetFactory.CreateInstance("System.DateTime").Now.ToString("MM/dd/yy HH:mm:ss")
msgbox CurrentTime


你可能感兴趣的:(.net,.net,.net,qtp,qtp)