|
-
May 19th, 2010, 02:07 AM
#11
Thread Starter
Addicted Member
Re: Form Opening
 Originally Posted by isnoend07
Code:
Dim fname As String
Dim uses As Integer
uses = 1
fname = App.Path & ":mydata.dat"
Open fname For Output As #1
Print #1, uses
Close #1
Open the hidden file
Dim fname As String
Dim uses As String
fname = App.Path & ":mydata.dat"
Open fname For Input As #1
Line Input #1, uses
Close #1
MsgBox uses
Thank You for the code
now how can i hide that file that i make it ???
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
|