Hi,

I started to prog my own FM/DAB Radio app for a specifix dongle.

Right now I start a process to scan for frequencies. The results should be listed vertically in a widget, but everything I tried failed.

Output from terminal when command has finished:

Qt Code:
  1. 5A 174928000
  2. 5B 176640000
  3. 5C 178352000
  4. [LOCKED]
  5. 5D 180064000
  6. 6A 181936000
  7. 6B 183648000
  8. 6C 185360000
  9. 6D 187072000
  10. 7A 188928000
  11. 7B 190640000
  12. 7C 192352000
  13. 7D 194064000
  14. 8A 195936000
  15. 8B 197648000
  16. [LOCKED]
  17. 8C 199360000
  18. 8D 201072000
  19. 9A 202928000
  20. 9B 204640000
  21. 9C 206352000
  22. 9D 208064000
  23. 10A 209936000
  24. 10B 211648000
  25. 10C 213360000
  26. 10D 215072000
  27. 11A 216928000
  28. 11B 218640000
  29. 11C 220352000
  30. 11D 222064000
  31. 12A 223936000
  32. 12B 225648000
  33. 12C 227360000
  34. 12D 229072000
  35. 13A 230748000
  36. 13B 232496000
  37. 13C 234208000
  38. 13D 235776000
  39. 13E 237448000
  40. 13F 239200000
  41.  
  42. Scan completed
To copy to clipboard, switch view to plain text mode 

The way i start the command when scan button is pushed:

Qt Code:
  1. QProcess::execute("/opt/bin/mediaclient --scandabfrequencies /dev/dab0");
To copy to clipboard, switch view to plain text mode 

I'd like to have these results except the empty line and "Scan completed" in an editable list.

Regards