How to print screen and import it into PictureBox?
Private Sub Print_Click...
SendKeys.Send("^{PRTSC}")
System.Threading.Thread.Sleep(200)
PictureBox.Image = Clipboard.GetImage()
PictureBox.Refresh()
End Sub
First time I click the button nothing appears. Second time I push the button screenshot of screen appears like it was first time I pushed the button, and so on...
If I divide my code into 2 parts, and push 2 buttons one after another everything works fine. What to do?



