Lets say someone wants to capture a video tutorial coding within visual basic. Using my app, it will capture the screen to a video, but it wont capture Visual Basic's dropdown menus, like what you see if you click Debug. I would really appreciate it if someone could tweak my code below to capture VB's dropdowns.
My application is at the following link:
http://www.vbforums.com/showthread.p...eb-2015-update
.Code:Dim BMP As New System.Drawing.Bitmap(MW, MH2, System.Drawing.Imaging.PixelFormat.Format32bppArgb) Dim Cap As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(BMP) Cap.CopyFromScreen(New Point(0, bdr), New Point(0, 0), ScreenSize, System.Drawing.CopyPixelOperation.SourceCopy) BMP.Save(writer.BaseStream, System.Drawing.Imaging.ImageFormat.Bmp) BMP.Dispose() Cap.Dispose() GC.Collect()




Reply With Quote
