Hi all,

I working on a program that makes a printscreen every minute
and save's the image to disk.

I'm using this right now but i can't get it to work

Private Sub Timer1_Timer()
'vbKeyPrint &H2A PRINT SCREEN key
SendKeys &H2A

Form1.Picture = Clipboard.GetData(vbCFDIB)
SavePicture Image, "TEST.BMP" ' Save picture to file.

End Sub


Does anyone know what I'm doing wrong


Thanx ASTERIX