hi,
i use the following code to initialize a QUAD
i would better like to use
q = &H00FF00FF00FF00FF
but the HiDWORD in the Quad remains &H00000000
is there any other solution ?
regards,
torsten
------------------
i use the following code to initialize a QUAD
Code:
DIM s AS ASCIIZ * 9 DIM q AS QUAD s = CHR$(255,0,255,0,255,0,255,0) MoveMemory BYVAL VARPTR(q), BYVAL VARPTR(s), 8
q = &H00FF00FF00FF00FF
but the HiDWORD in the Quad remains &H00000000
is there any other solution ?
regards,
torsten
------------------
Comment