i used
Qt Code:
  1. w.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
To copy to clipboard, switch view to plain text mode 
to make the windows boderless and i have Few forms and Tabs on the Application i want to use the bottom left to resize the Window and top Form to move the application

main.cpp
Qt Code:
  1. #include "mainwindow.h"
  2. #include <QApplication>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication a(argc, argv);
  7. MainWindow w;
  8.  
  9. w.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
  10. w.show();
  11.  
  12.  
  13.  
  14. return a.exec();
  15. }
To copy to clipboard, switch view to plain text mode