SendKeys.Flush Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Processes all the Windows messages currently in the message queue.
public:
static void Flush();
public static void Flush ();
static member Flush : unit -> unit
Public Shared Sub Flush ()
Remarks
Use Flush to wait for the application to process keystrokes and other operating system messages that are in the message queue. This is equivalent to calling Application.DoEvents until there are no more keys to process.
Note
Because there is no managed method to activate another application, you can either use this class within the current application or use native Windows methods, such as FindWindow
and SetForegroundWindow
, to force focus on other applications.