Quote:
1. I have an encryption rogram going that uses it's own algorithm as well as a variable algorithm with 6 fields inputted by the user. What my question is is this:
in my For...Next loop for decryption how can I check if a folder exists, if not create it as well as a .txt file inside to place my output? I already have the output in it's own textbox for easy cut and paste.
Try and open a file in the folder. If the open fails, the directory does not exist so create the folder. Read up on the access modes associated with the OPEN command to find out how to create files if they don't already exist. I can't remember the modes off the top of my head (it's been a while since I've used BASIC/VB). To do the error checking you'll need to use the ON ERROR and associated commands.