Sorry for wasteing your time, but this is driving me crazy...

I just used the normal bitblt modual and... this was my code..

Private Sub Command1_Click()
BlockWidthHeight = 20

Call BitBlt(GameArea.hDC, _
0, _
0, _
20, _
20, _
picBlockStrip.hDC, _
0, _
0, _
SRCCOPY)

End Sub

When i run it and picBlockStrip is visible it works fine... but I want picBlockStrip to be visible= false and when I run it with that it the GameArea remains blank. it I am referencing some code that also has an invisible source picbox and it works fine, but mine just wont work, what do I need to add to make it work?