I am trying to paste an image that I copied from a web page into a picture box. I am using the following code but it isn't working:

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4.     Picture1.Picture = Clipboard.GetData(vbCFBitmap)
  5. End Sub

What am I doing wrong?