I'd like to allow a user to select a directory path, then parse a bunch of files in that directory. I have the parsing part down, and I can hard code a directory in just fine, however I need to enable people to select a directory in order to make this mini-app useful.
...My issue is two fold,
1. I need direction as to how to create a form in VB that will give users the ability to select a directoy. (I am new to vb, and not sure where to start. I am not asking anyone to do it for me, but if you could point me to a tutorial, example online that would help it'd be great.
2. I am using the ".LookIn = """ command to specify a directory right now. I am having problems specifying a variable (E.g. Dir = "C:/folder/subfolder", then .LookIn = Dir) doesn't seem to work) Any ideas as to why?