HEX value o/p to PC and arrays


Results 1 to 14 of 14

Threaded View

  1. #4
    Join Date
    Mar 2005
    Location
    Iowa, USA
    Posts
    216


    Did you find this post helpful? Yes | No

    Lightbulb

    Quote Originally Posted by CocaColaKid
    Code:
    array1  var  byte[4]
    ...
    
    
    for i = 0 to 3
    array[i]=i
    next i
    I think this may work better.
    Code:
    array1  var  byte[3]
    ...
    
    
    for i = 0 to 3
    array1[i]=i
    next i
    Last edited by rhino; - 22nd August 2005 at 21:23.

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts