Many thanks!
There is no problem, the program runs ok. The problem is now that when I read from standard output of a process and put the text in a qtextbrowser, the text have strange characters instead of accents.
I do:
texto->append(line);
}
QByteArray result=cron->readAllStandardOutput();
QStringList lines = QString(result).split("\n");
foreach (QString line, lines) {
QMessageBox::information(this, "columna",line);
texto->append(line);
}
To copy to clipboard, switch view to plain text mode
Any help?
Many thanks!
Bookmarks