Last Modified: 1/18/2021
Writes Data to the DataPtr&.
Name | Type | Required | Description |
Data | Integer | Yes | The Data you wish to write. |
Syntax: WriteLong <Data>[, <Data>] |
Dim a&(5) As Long b& = VarPtr&(a&) DataPtr& = b& WriteLong 1,2,3,4,5,6 For n = 0 To 5 Print a&(n) Next |