|
-
Sep 15th, 2000, 04:40 AM
#1
Thread Starter
Hyperactive Member
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
-
Sep 15th, 2000, 06:07 AM
#2
transcendental analytic
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
.
.
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 15th, 2000, 06:46 AM
#3
Thread Starter
Hyperactive Member
Nice one
I already have some frfeefile stuff, thanks, i'll convert.
Try my voting in VB (ASP) http://www.galemusic.com
Cheers GARY
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|