ContributionsMost RecentMost LikesSolutionsRe: Date not entered during playback Try to Select the "TODAY" date if it is a DATE control. By that your test can be re run anytime in the future also. Re: Help Needed in getting text from a notepad Use the below code to read from the entire text file; Sub TextfileRead Dim tobj, FSO Set FSO = CreateObject("Scripting.FileSystemObject") Set tobj = FSO.OpenTextFile("C:\SampleText.txt",1) Do Until tobj.AtEndOfStream content = tobj.Readline Msgbox content Loop Set tobj = Nothing Set FSO = Nothing End Sub Re: Help Needed in getting text from a notepad Use the .TEXTCONTENT property to fetch the value of the Object, say a textbox or a label or any object of your interest(if applicable) Re: "There was an attempt to perform an action at a point, which is beyond the screen" error Kindly Keep the screen at 100% zoom before recording your scripts. If you are to be involved in browser based testing, keep the browser in maximized mode so that you won't face such issues in future :-)