Navigation bar
  Start Previous page
 145 of 283 
Next page End 140 141 142 143 144 145 146 147 148 149 150  

136
MakeString
Type
Function returning String
Invocation
MakeString(address, length)
Parameter
Method
Type
Description
address
ByVal
int16
The address of bytes with which to populate the string.
length
ByVal
int8/16
The number of characters to place in the string.
Discussion
This function populates a string with an arbitrary byte stream.  It is most useful for composing or modifying
strings but may have other uses as well.
Example
Dim ba(1 to 10) as Byte
Dim i as Integer
Dim s as String
ba(i) = &H60 + CByte(i)
Next i
s = MakeString(MemAddress(ba), SizeOf(ba))
Compatibility
This function is not available in BasicX compatibility mode.
Previous page Top Next page