hi all,
can anyone please tell me how to create array of RArray<char*> temp;
THanks
hi all,
can anyone please tell me how to create array of RArray<char*> temp;
THanks
Hi,
There are many buffers in Symbian why don't you use them like
HBufC, TBuf etc you could easily create them and it is not a good practise to use native datatype but you could use symbian datatypes
You could declare RArray<TBuf> array;
you could allocate memory for it like
_LIT( KSymbian, "Symbian" );
TBuf<20> member( KSymbian() );
array.Append( member );
Hope you have understood my concern.![]()
Regards,
Sriky
Hi,
Since you are using an array of pointers you can use RPointerArray which yuo can declare as RPointerArray<char*> and just start appending the pointers to it.
You can store the pointers in descriptor format and then convert them to char if that is your requirement. Follow this link to see how it can be achieved
http://wiki.forum.nokia.com/index.ph...and_Vice_Versa
Maximus
S60 Developer
Impossible is nothing
Hi yogpan, Thanks for ur response.But i think u don't understand what i am trying to say.
I am trying to create array of followong variables.
RArray<char*> temp1;
RArray<char*> temp2;
........
......
RArray<char*> tempn-1;
RArray<char*> tempn;
Now i want to store refernece of these rarray type (temp,temp1....)in an array.
Thanks
I guess you want to create a two dimensional array you could follow this link http://wiki.forum.nokia.com/index.ph...ray_in_Symbian
Regards,
Sriky