B4R Question how sending this string

jarda

Member
Licensed User
Longtime User
hi

how sending this string

Dim s as string

s = "t1.txt = "hi" "

(nested "" )

??

thanks

Jarek
 

Attachments

  • Untitled-3.jpg
    Untitled-3.jpg
    36.2 KB · Views: 376
Last edited:

jarda

Member
Licensed User
Longtime User
Dim p(20) As Byte
Dim s as string

s= "hi"



p = JoinBytes(Array("t1.txt=".GetBytes, Array As Byte(34), s.GetBytes, Array As Byte(34)))

(34 is " )

is next scenario ? (better)

Jarek
 
Upvote 0
Top