2 Attachment(s)
I don't see the output string
Hi,
I don't see the output string.
Attachment 9502
Thank you!
Re: I don't see the output string
Use one of the following
Code:
teLog
->append
("Reading: " + QString::number(socket
->bytesAvailable
()));
or
teLog
->append
(QString("Reading: %1").
arg(socket
->bytesAvailable
()));
Re: I don't see the output string