HEX value o/p to PC and arrays


Closed Thread
Results 1 to 14 of 14

Hybrid View

  1. #1
    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.

  2. #2


    Did you find this post helpful? Yes | No

    Default

    oops, missed those ones

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


    Did you find this post helpful? Yes | No

    Talking

    Honest mistake.... right on otherwise!

  4. #4


    Did you find this post helpful? Yes | No

    Default

    I copy and pasted and didn't notice those errors.

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