ContributionsMost RecentMost LikesSolutionsRe: Creating File DialogThanks! That is exactly what I was looking for and opens up a whole new array of options for me. Didn't even realize there was a UserForms section!Re: Temporary table variablesIf you're looking to create tables that are persistent after a script ends I would suggest using Excel and having your script read the Excel file with the DDT.ExcelDriver to fill in your Table Variable. Re: Help using the aqConvert.StrToDate methodHey Ashley, if I understand your question correctly you're just looking for a variable type to store the data that you've converted with the aqConvert function. I believe the type of varaible you are looking for is "var", which is designed to be open-ended to hold any data type. So you could say: var convertedDate = aqConvert.StrToDate(strDate) and it will store the converted value as a date. Creating File DialogWhen my test script is run there is a point where I need to ask a person to select a file. This is not part of an application or website, it is something that needs to be selected to that the test script can continue running. Currently I use a simple inputbox that is built in to TestComplete so the user can just copy and past the directory and file name that they want selected. However, I am hoping to instead use a File Dialog box or something similar that would give the user the browse functionality to select a file. Is there anything like this in TestComplete or any ability to replicate it? Thanks in advance.