I assume u mean dialogs by forms .
You can always have functions to retrieve the data from dialog.
For eg -
MyDialog dlg;
if(dlg.exec() == Qt::Accepted)
{
QString text
= dlg.
getLineEditText();
// You get the text of the line edit here
// Now pass it on to another dialog or use it as u want
dlg2.setLineEditText(text);
}
MyDialog dlg;
if(dlg.exec() == Qt::Accepted)
{
QString text = dlg.getLineEditText(); // You get the text of the line edit here
// Now pass it on to another dialog or use it as u want
dlg2.setLineEditText(text);
}
To copy to clipboard, switch view to plain text mode
Hope you get the idea
Bookmarks