Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting from C to VB

Status
Not open for further replies.

UncleCake

Technical User
Feb 4, 2002
355
US
Hi,

I am converting some old C to VB and I am stuck on a variable. It is written as follows:

long RecordNumber[MAX_LINES+2];

I think that RecordNumber is an array, but I don't know.

-Uncle Cake
 
It has MAX_LINES + 2 elements.

MAX_LINES must have been defined somewhere else in the code and is a an integer
 
And don't forget:
When regularly declaring this in VB, it would be MAX_LINES + 1 instead of MAX_LINES + 2.....
Greetings,
Rick
 
Thanks for you help, I think that I can get it from here.

-Justin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top