Hej! Den här sidan verkar svara på exakt det du söker, om jag förstod det hela rätt.Skriva sträng binärt till fil
Jag försöker skriva en sträng till en fil såhär:
<code>
Function Skriv(vData as String)
Open Filnamn for binary as #1
Put #1, 1, vData
Close #1
End Function
</code>
Detta händer i en funktion där vData är ett strängvärde som anges vid funktionsanropet.
När jag nu skriver till filen fylls filen med "fyrkanter", fastän vData t ex kan innehålla värdet "12345".
Tack på förhand.
//Marcus, via JonasSv: Skriva sträng binärt till fil
http://www.freevbcode.com/ShowCode.asp?ID=3041
Binary Put/Get for Strings (with Unicode)
More information: These functions allow you to write and read (put/get) strings to/from a file opened in binary-mode. A unicode-version is also included. All functions let you specify if you want to use a integer or long length-descriptor. If you choose integer the resulting file will be 2 bytes shorter than choosing long, but the string can only be 2^15-1 Bytes long.
mvh
Christian