I am trying to load an image into the screen using api, and no picture box controls...I have the following code:

VB Code:
  1. Private Sub Form_Activate()
  2.  
  3.     'Create dc device
  4.     BackDC = CreateCompatibleDC(Me.hdc)
  5.  
  6.     'Load Image into dc
  7.     BackIM = LoadImage(0, App.Path & "\back.bmp", 0, 0, 0, &H10)
  8.  
  9.     'Associate dc with loaded image
  10.     SelectObject BackDC, BackIM
  11.  
  12.     'Draw image
  13.     BitBlt Me.hdc, 10, 10, 50, 50, BackDC, 0, 0, vbSrcCopy
  14.  
  15. End Sub

I don't get any error, but the image simply doesn't appear in the screen. I have my form set to pixels, and I've also tried setting the AutoRedraw to true, and add a Form1.cls, but that doesn't work either....

Any idea?

Thanks