I have a situation where I want to bring up a web page that the user
will interact with, and when they click on a submit button a response
is sent, and I want to get that response in my Qt program and then
destroy the view with the page. I am able to bring up the page like
this:

  Dialog.resize(1500, 1000);
  loginView = new QWebView(&Dialog);
  loginView->setObjectName(QStringLiteral("webView"));
  loginView->setUrl(QUrl(QStringLiteral("http://foo.bar.com/baz/";)));
  Dialog.exec();

But I have no idea how I could get the response sent when the user
submits the page, nor how I would destroy the page.

Can anyone help me with this?

Thanks!
Larry
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to