Apr 10, 2003 #1 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
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
Apr 10, 2003 Thread starter #3 UncleCake Technical User Feb 4, 2002 355 US Ferderal102, How many elements does it have? Upvote 0 Downvote
Apr 10, 2003 #4 Federal102 Programmer Nov 7, 2002 41 US It has MAX_LINES + 2 elements. MAX_LINES must have been defined somewhere else in the code and is a an integer Upvote 0 Downvote
It has MAX_LINES + 2 elements. MAX_LINES must have been defined somewhere else in the code and is a an integer
Apr 10, 2003 #5 LazyMe Programmer Jan 13, 2003 938 MX And don't forget: When regularly declaring this in VB, it would be MAX_LINES + 1 instead of MAX_LINES + 2..... Greetings, Rick Upvote 0 Downvote
And don't forget: When regularly declaring this in VB, it would be MAX_LINES + 1 instead of MAX_LINES + 2..... Greetings, Rick
Apr 10, 2003 Thread starter #6 UncleCake Technical User Feb 4, 2002 355 US Thanks for you help, I think that I can get it from here. -Justin Upvote 0 Downvote