You can draw a bitmap on a windows form using the Paint method in vb.net.
Private Sub Form1_Paint(ByVal sender As System.Object, _ ByVal e As System.Windows.Forms.PaintEventArgs) _ Handles MyBase.Paint Dim grp As Graphics grp = e.Graphics() grp.DrawImage(New Bitmap("c:\test.bmp"), 0, 0) End Sub