Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1080157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:58:49+00:00 2026-05-16T21:58:49+00:00

When using a Visual Basic two-dimensional array, which index varies fastest? In other words,

  • 0

When using a Visual Basic two-dimensional array, which index varies fastest? In other words, when filling in an array, should I write…

For i = 1 To 30
    For j = 1 To 30
        myarray (i,j) = something
    Next
Next

or

For i = 1 To 30
    For j = 1 To 30
        myarray (j, i) = something
    Next
Next

(or alternatively does it make very much difference)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:58:50+00:00Added an answer on May 16, 2026 at 9:58 pm

    Column major. VB6 uses COM SAFEARRAYs and lays them out in column-major order. The fastest access is like this (although it won’t matter if you only have 30×30 elements).

    For i = 1 To 30 
        For j = 1 To 30 
            myarray (j, i) = something 
        Next 
    Next 
    

    If you really want to speed up your array processing, consider the tips in Advanced Visual Basic by Matt Curland, which shows you how to poke around inside the underlying SAFEARRAY structures.

    For instance accessing a 2D SAFEARRAY is considerably slower than accessing a 1D SAFEARRAY, so in order to set all array entries to the same value it is quicker to bypass VB6’s SAFEARRAY descriptor and temporarily make one of your own. Page 33.

    You should also consider turning on “Remove array bounds checks” in the project properties compile options.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Overview: I'm working on some windows service using Visual Basic 2010, which deployed on
I am using visual basic for coding. In my form I have a delete
I'm using Visual Basic 6 for a legacy project and it's been working fine.
How can you change your IP Address using visual basic please? I havnt been
I am working with VS 2005 and using visual basic for coding. How do
Does anyone know if there is an sample code for using Visual Basic to
Using the commandline visual basic compiler (vbc.exe) with option VBruntime- does not allow using
I need to start a Visual Basic script file by using WMI in a
I'm trying to create a very basic Setup and Deployment project using Visual Studio.
I have written a basic Application for windows mobile 5. It is using visual

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.