Quote Originally Posted by mickey
hi, I need to implement drag and drop between to QLabel. I need if this is possible...thanks
Qt Code:
  1. myLabel::myLabel (QString s, QWidget* parent, const char* name) : QLabel (parent,name)
  2. {
  3. setAcceptDrops(TRUE);
  4. }
To copy to clipboard, switch view to plain text mode 
If you use two QLineEdits, you will get the drag and drop for free. You can change their colors to look like labels if necessary.