• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Visual Basic WriteOffSet Function By Pink

Status
Not open for further replies.

F.I.G.H.T.E.R

ϻɵĐęřåŦō&#1136
User
Joined
Mar 26, 2013
Messages
975
Reputation
0
Reaction score
15,790
Points
493
Credits
0
‎12 Years of Service‎
20%
WriteOffSet Function By Pink

Code:
>Private Function WriteFileOffSet(sFilePath As String,byteData as byte, Optional iOffSet As Long = 0)
Dim aBytes() As Byte
Open sFilePath For Binary As #1
ReDim aBytes(LOF(1) - 1)
Get #1, , aBytes
aBytes(iOffSet) = byteData
Seek #1, 1
Put #1, , aBytes
Close #1
End Function
 
Re: WriteOffSet Function By Pink

Servirá de mucho a aquellos que desean crear su propio modificador o Avfucker.

 
Status
Not open for further replies.
Back
Top