Results 1 to 18 of 18

Thread: [RESOLVED] VB6.0: I'm confused, need syntax help

Threaded View

  1. #17
    Cumbrian Milk's Avatar
    Join Date
    Jan 2007
    Location
    0xDEADBEEF
    Posts
    2,448

    Re: [RESOLVED] VB6.0: I'm confused, need syntax help

    the order in memory would be...
    Code:
    ReDim Beeps(0 To N, 0 To 1)
    
    Beeps(0, 0) 
    Beeps(1, 0)
    Beeps(2, 0)
    Beeps(3, 0)
    ...
    Beeps(N, 0)
    Beeps(0, 1) 
    Beeps(1, 1)
    Beeps(2, 1)
    Beeps(3, 1)
    ...
    Beeps(N, 1)
    If your using just Redim and not Redim Preserve your making a new array not adding to the old one.
    Last edited by Milk; Apr 14th, 2008 at 07:52 PM.

Posting Permissions

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



Click Here to Expand Forum to Full Width