Hi all,

I have a very simple code to start/show the virtual keyboard which works fine

Qt Code:
  1. keyboard = new Keyboard(this);
To copy to clipboard, switch view to plain text mode 

but I can not hide it dynamically I have tried

Qt Code:
  1. keyboard->disconnect();
To copy to clipboard, switch view to plain text mode 
also this
Qt Code:
  1. keyboard->deleteLater();
To copy to clipboard, switch view to plain text mode 

Has anyone got any suggestions please.