|
-
Dec 1st, 1999, 06:01 AM
#1
Thread Starter
Member
Hi everybody ; Salam 4 all
i want to read a EXE file from VB & write it
by using Binery
Please I need code not e-mail address
------------------
BlackRose
-
Dec 1st, 1999, 09:05 AM
#2
PowerPoster
Check out http://www.vb-world.net/ubb/Forum1/HTML/011149.html for info on reading a binary. To write a binary, use this
Dim intFile As Integer ' FreeFile variable
intFile = FreeFile() ' Set intFile to an unused file.
Open "C:\YourFile.exe" For Binary As intFile
Put #intFile, , yourdatastringvariable
Close #intFile
All the above is available in help...
------------------
- Chris
[email protected]
If it ain't broke - don't fix it 
[This message has been edited by chrisjk (edited 12-01-1999).]
-
Dec 2nd, 1999, 03:58 AM
#3
Thread Starter
Member
Thankx
------------------
BlackRose
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
|