mattdaddyjuice
Member
- Joined
- Jan 15, 2009
- Messages
- 21
- Programming Experience
- 5-10
I have a vb.net app that reads from text files and a database over a network connection. On a couple of the computers, it pops up with error messages saying the drive can not be found.
The weird thing is, if I go to My Computer and open up the folder and then close it out and start the program again, everything goes fine.
To solve this I just run a process to open that directory at startup:
Dim newprocess as Process = Process.Start("explorer.exe", "F:\test\")
That works fine, but it is just bothersome to close the folder every time. I am hoping there is a better way to do this. Thanks
The weird thing is, if I go to My Computer and open up the folder and then close it out and start the program again, everything goes fine.
To solve this I just run a process to open that directory at startup:
Dim newprocess as Process = Process.Start("explorer.exe", "F:\test\")
That works fine, but it is just bothersome to close the folder every time. I am hoping there is a better way to do this. Thanks