hi all,
please tell me how to make concatenate of two different datatypes
Qstring str="4";
unsigned long lg=100001;
now i want to make the value as lg= 4100001 .(i.e.,"4"+100001)
Thanks,
Printable View
hi all,
please tell me how to make concatenate of two different datatypes
Qstring str="4";
unsigned long lg=100001;
now i want to make the value as lg= 4100001 .(i.e.,"4"+100001)
Thanks,
Have a look at the QString documentation, you can convert unsigned long to QString and then concatenate.
Hi;
try use the class QVariant.
Or something like this: