I have a bug in VB that says file already open, is their an option in VB to view all open files?
Many Thanks
Gary
Printable View
I have a bug in VB that says file already open, is their an option in VB to view all open files?
Many Thanks
Gary
you could of course test out each filenumbers if they're open but i recommend you should use FreeFile function to return the next free filenumber when you open a new file ;)
Code:ff1=freefile
open file for input as ff1
ff2=freefile
open file for output as ff1
.
.
I already have some frfeefile stuff, thanks, i'll convert.
Try my voting in VB (ASP) http://www.galemusic.com
Cheers GARY