Adblock breaks this site

Visual Basic 2008 screenshot taker help.

Discussion in 'Programming General' started by |0|, Mar 10, 2008.

  1. |0|

    |0| Apprentice
    $25 USD Donor New

    Joined:
    Sep 21, 2007
    Posts:
    818
    Referrals:
    2
    Sythe Gold:
    2
    Vouch Thread:
    Click Here
    Two Factor Authentication User Gohan has AIDS
    Visual Basic 2008 screenshot taker help.

    I would need a tutorial or something on how to make a simple screenshot taker in viusal basic 2008.

    I really have absolutly no idea on how to make one..

    Hope I don't cause alot of trouble.

    Thanks.
     
  2. alexandr

    alexandr Guest

    Referrals:
    0
    Visual Basic 2008 screenshot taker help.

    put this code in a button or timer or whatever you want!!



    Dim ScreenSize As Size = New Size(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
    Dim screenGrab As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
    Dim g As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(screenGrab)
    g.CopyFromScreen(New Point(0, 0), New Point(0, 0), ScreenSize)
    screenGrab.Save("C:\" & Label1.Text & ".jpeg")
     
  3. Original VB

    Original VB Guest

    Referrals:
    0
    Visual Basic 2008 screenshot taker help.

    "Google" is your friend. Google it and there will be video tutorials.
     
< FindColor Help | Powerful C++ Virus >


 
 
Adblock breaks this site