R
Robert Dufour
As a simple example starting with a memory pointer location I need to do 10
operations, (like copying 10 values to an array for instance), then when
that's done, move the pointer to the eleventh location so that I can then
use the next ten values, etc
Dim Ptr1 as IntPtr
For x = 0 to 100
'Do something like getting 10 values from memory from this block,
initailly at ptr1
'next move the pointer to a new position 10 units so that I can pickup
the next 10 values
ptr1 = Ptr1 + 10 'Does not work
next x
How can you do this in vb.net 2003
Thanks for any help
Bob
operations, (like copying 10 values to an array for instance), then when
that's done, move the pointer to the eleventh location so that I can then
use the next ten values, etc
Dim Ptr1 as IntPtr
For x = 0 to 100
'Do something like getting 10 values from memory from this block,
initailly at ptr1
'next move the pointer to a new position 10 units so that I can pickup
the next 10 values
ptr1 = Ptr1 + 10 'Does not work
next x
How can you do this in vb.net 2003
Thanks for any help
Bob