The application I'm writing is using a virtual keyboard. To show, hide, resize or move the virtual keyboard, I first need to get a handle to it through a call to FindWindow
function and then send it some messages by PostMessage
.
Since I have no experience with winapi, my question is do I need to release this handle in some way or can I just forget about it once I'm done?
The virtual keyboard is a process of its own with longer lifetime than my application.