hi users
i am using for last one year.
but i am having one problem.
as per my new requirement i have to receive hex data from RS422 port and display the received hex data in any display widget.

so i started to code.
my code has one unsigned char array and few more widgets for other opeartions

my code looks like thsi

unsigned received_hexbuff[62];

---
---
---

QString display_textr(received_hexbuff);
QLabel display_lbl;
lbl.setText(display_text);
---
--
when i compile this code it is showing in compatible QString constructor call.

then i refer Qt docs. there i found QString constructor accpet only const char * argument type only.

so i badly requir to convert my char array to QString which is used to display the hex data as it is.

i request somebody to help me.
plz.......
thanks in advance....