VBScript to reverse a String without using strreverse 03:02:00 Add Comment Edit Dim myStr, sLen myStr=InputBox("Enter your string") sLen = Len(myStr) for i=1 to sLen strRev = mid(myStr,i,1)& strRev Next Msg... Read More
How to Create a Word Document in QTP? 02:51:00 Add Comment Edit Dim oWord 'Initiate the word document object Set oWord = CreateObject("Word.Application") 'Create new word document oWord.... Read More