Hello,
I am trying to send the windows key (the one with the flag on) using sendkeys on the click of the button.

This doesn't seem to be working:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        SendKeys.Send(Keys.LWin)
    End Sub
Any help would be much appreciated.

Thanks in advance,

Harry.