delaring and initializing "Dim a As Integer"

  • Thread starter Thread starter Peter Ignarson
  • Start date Start date
P

Peter Ignarson

Hi, simple question

Is there a syntax (other than the one below that is invalid) that will let
me declare and initialize two variables at the same time (using VS 2003,
1.1) ?
Thank you
Pete

Dim a,b As Integer = 6 'Syntax error, invalid
 
* "Peter Ignarson said:
Is there a syntax (other than the one below that is invalid) that will let
me declare and initialize two variables at the same time (using VS 2003,
1.1) ?

Dim a,b As Integer = 6 'Syntax error, invalid

No.
 
Back
Top