Results 1 to 4 of 4
  1. #1
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love

    [Source Code] ScreenShot Taker

    Add 1 textbox and 1 button and your done.

    Code:
    Public Class Form1
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Timer1.Interval = "300" 'It is currently set to 3 seconds
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Dim ScreenSize As Size = New Size(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
            Dim Screenshot As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
            Dim shot As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(Screenshot)
            sho*****pyFromScreen(New Point(0, 0), New Point(0, 0), ScreenSize)
            Screenshot.Save(TextBox2.Text & ".jpeg")
            ' Screenshot.Save("Rename Me" & ".jpeg") 'Rename that Rename Me Bit to w/e you like
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Start()
        End Sub
    End Class
    Enjoy.. (Credit me if you use this xD)
    This is a great release in Multitools as it automatically takes a screenshot + saves it in the Location where your .exe is (or you can use the commented out version instead)
    No I do not make game hacks anymore, please stop asking.

  2. The Following User Says Thank You to flameswor10 For This Useful Post:

    bbhing987 (09-27-2010)

  3. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Do not make threads for such code...post it in the snippet vault.



  4. #3
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Oh right.. Forgot 'bout that xD (I forgot there was a snippet vault)

    //request delete + close
    No I do not make game hacks anymore, please stop asking.

  5. #4
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    I close instead.

  6. The Following 3 Users Say Thank You to Lolland For This Useful Post:

    bbhing987 (09-27-2010),flameswor10 (09-25-2010),NextGen1 (09-25-2010)

Similar Threads

  1. [TUT] arnold's hack v1.1 vb6 source code
    By arnold in forum WarRock - International Hacks
    Replies: 6
    Last Post: 07-11-2008, 10:36 PM
  2. Stamina Hack and source code ?
    By Teh Sasuke in forum C++/C Programming
    Replies: 0
    Last Post: 12-31-2007, 05:08 PM
  3. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  4. keylogger source code
    By obsedianpk in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-24-2007, 02:31 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM