Page 1 of 1

where is the (Item) member in C++.NET?

Posted: Sat Aug 01, 2009 5:53 am
by 13052823
Hello,

I have this line in the VB.NET
Volume1.Item(index).Y = Volume1.Item(index).Y + 1

but what is the equivalent in C++.NET? because I could not find "ITEM" member in C++.NET?
Volume1->?

Regards,
Rabbit!

Re: where is the (Item) member in C++.NET?

Posted: Mon Aug 03, 2009 10:18 am
by 10050769
Hello Rabbit,
but what is the equivalent in C++.NET? because I could not find "ITEM" member in C++.NET?
Volume1->?
Always, you could do same with item access directly to position that you want in series for exemple volume1[index]. Please check next lines of code if you do what you want in C++ .NET.

Code: Select all

	volume1[index]->Y  = volume1[index]->Y+1;
Hope will helps.

Thanks,