I want to allow the user to name the file that will be created. Can I use the commondialog control to facilitate that? If so what would that code look like? Also, does anyone know of a good tutorial on using the commondialog control? The code below is how I've been naming the file.
Thanks
Thanks
Code:
Open "C:\Aplace\output\" & ntime2 & ".atb" For Append As #1
Print #1, strAttributes & strName
Close #1