Click here to Skip to main content
15,924,367 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionAdob PDF Printer Pin
Ramuv28-Apr-07 0:32
Ramuv28-Apr-07 0:32 
AnswerRe: Adob PDF Printer Pin
Dave Kreskowiak28-Apr-07 5:13
mveDave Kreskowiak28-Apr-07 5:13 
QuestionRemote Sql Server Connectivity Pin
Rupesh Kumar Swami27-Apr-07 22:30
Rupesh Kumar Swami27-Apr-07 22:30 
AnswerRe: Remote Sql Server Connectivity Pin
kubben28-Apr-07 1:23
kubben28-Apr-07 1:23 
GeneralRe: Remote Sql Server Connectivity Pin
Rupesh Kumar Swami30-Apr-07 19:29
Rupesh Kumar Swami30-Apr-07 19:29 
AnswerRe: Remote Sql Server Connectivity Pin
Dave Kreskowiak28-Apr-07 4:56
mveDave Kreskowiak28-Apr-07 4:56 
Question2d array and 1d arrays Pin
mpyanap27-Apr-07 21:55
mpyanap27-Apr-07 21:55 
AnswerRe: 2d array and 1d arrays Pin
Sathesh Sakthivel27-Apr-07 22:11
Sathesh Sakthivel27-Apr-07 22:11 
One Dimension Array:

Many arrays have only one dimension, such as the number of people of each age. The only requirement to specify an element is the age for which that element holds the count. Therefore, such an array uses only one index. The following example declares a variable to hold a one-dimensional array of age counts for ages 0 through 120.

Ex:

Dim ageCounts(120) As UInteger

Two Dimension Array:

Some arrays have two dimensions, such as the number of offices on each floor of each building on a campus. The specification of an element requires both the building number and the floor, and each element holds the count for that combination of building and floor. Therefore, such an array uses two indexes. The following example declares a variable to hold a two-dimensional array of office counts, for buildings 0 through 40 and floors 0 through 5.

Ex:

Dim officeCounts(40, 5) As Byte

Regards,

Satips.

QuestionwebClient On Vista Problem Pin
PCAVV27-Apr-07 20:29
PCAVV27-Apr-07 20:29 
Question[Message Deleted] Pin
navyasri27-Apr-07 18:42
navyasri27-Apr-07 18:42 
AnswerRe: very urgent Pin
Christian Graus27-Apr-07 19:54
protectorChristian Graus27-Apr-07 19:54 
AnswerRe: very urgent Pin
Dave Kreskowiak28-Apr-07 4:36
mveDave Kreskowiak28-Apr-07 4:36 
GeneralRe: very urgent Pin
Christian Graus28-Apr-07 13:07
protectorChristian Graus28-Apr-07 13:07 
GeneralRe: very urgent Pin
Dave Kreskowiak28-Apr-07 13:14
mveDave Kreskowiak28-Apr-07 13:14 
QuestionLogin Timer Pin
Polymorpher27-Apr-07 11:34
Polymorpher27-Apr-07 11:34 
AnswerRe: Login Timer Pin
kubben27-Apr-07 11:53
kubben27-Apr-07 11:53 
GeneralRe: Login Timer Pin
Polymorpher27-Apr-07 14:22
Polymorpher27-Apr-07 14:22 
GeneralRe: Login Timer Pin
Arun.Immanuel27-Apr-07 16:48
Arun.Immanuel27-Apr-07 16:48 
GeneralRe: Login Timer Pin
Polymorpher27-Apr-07 19:14
Polymorpher27-Apr-07 19:14 
GeneralRe: Login Timer Pin
kubben28-Apr-07 0:56
kubben28-Apr-07 0:56 
GeneralRe: Login Timer Pin
Polymorpher28-Apr-07 13:47
Polymorpher28-Apr-07 13:47 
QuestionMAke button affect numerical field Pin
who needs to know?27-Apr-07 11:14
who needs to know?27-Apr-07 11:14 
AnswerRe: MAke button affect numerical field Pin
Christian Graus27-Apr-07 15:19
protectorChristian Graus27-Apr-07 15:19 
GeneralRe: MAke button affect numerical field Pin
who needs to know?28-Apr-07 21:41
who needs to know?28-Apr-07 21:41 
GeneralRe: MAke button affect numerical field Pin
Christian Graus29-Apr-07 0:06
protectorChristian Graus29-Apr-07 0:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.