Hi, does anyone know how to get rid of the taskbar in linux on the mini2440? Thanks! Jaz
taskbar in linux
If you want to do it from your Qt application use: frmMyWidget->showFullScreen(); rather than frmMyWidget->show(); in your main.cpp or whatever file you use to instantiate your widget class. frmMyWidget will be whatever name you have assigned to your form in designer or whatever name you have given to your subclass object name. int main (int argc, char * argv[]) { QApplication myapp(argc, argv); frmMyWidget *frmMyWidget1 = new frmMyWidget; ... ... frmMyWidget1->showFullScreen();