Search results for query: *

  • Users: Giver
  • Order by date
  1. G

    How to protect drawing on screen ?

    Try This: Public Class Form1 Dim G As Graphics Dim Dpen As New Pen(Color.Red, 5) Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint G = e.Graphics G.DrawLine(Dpen, 100, 100, 500, 500) End Sub End...
  2. G

    Question Screen Recorder Help

    Okay I'm not sure that this is in the right catagory, but I'm pretty sure it is. I want to make a Screen Recorder which takes a screenshot of the screen every time a timer ticks. Then I want to compress the image into an .avi file. I have tried doing this in the following code, but I don't know...
Back
Top