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!
where is the (Item) member in C++.NET?
Re: where is the (Item) member in C++.NET?
Hello Rabbit,
Hope will helps.
Thanks,
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.but what is the equivalent in C++.NET? because I could not find "ITEM" member in C++.NET?
Volume1->?
Code: Select all
volume1[index]->Y = volume1[index]->Y+1;
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |