Results 1 to 11 of 11
  1. #1
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107

    [TUT]Screen RECORDER!!!

    ok what this does it takes a bunch of pictures and plays it back as a video its pretty cool.
    Credits:FOR THE CODE YET AGAIN (i did everything else)
    the homie userisanfbiagent

    First make a form with 10 buttons and name them this.
    Rec
    STP
    INT10
    INT50
    INT100
    INT250
    INT500
    INT1000
    Button9
    Button10

    then make a checkbox named
    CheckBox1

    make 3 textboxes and name them
    FileDIR
    FileNUM
    FileType

    and a timer named
    RECScreen

    and 2 labels named
    IO
    Label1

    So your form1 will look like this.


    Then make a new form and name it
    VideoScreenWindow

    on form2 make a picturebox named
    VideoScreen

    So form2 will look like this.



    Now just double click your form1 and delete all the code and paste this
    Code:
    ublic Class Form1
    
        Private Sub RECScreen_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RECScreen.Tick
    
            If CheckBox1.Checked = True Then
                Dim DirectoryA As String = FileDIR.Text
                Dim Frame0 As String = FileNUM.Text
                Dim img0 As String = FileType.Text
    
                FileNUM.Text = FileNUM.Text + 1
                VideoScreenWindow.VideoScreen.Load(DirectoryA & Frame0 & img0)
    
            Else
    
                Dim ScreenSize As Size = New Size(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
                Dim BMP As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height)
                Dim g As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(BMP)
                g.CopyFromScreen(New Point(0, 0), New Point(0, 0), ScreenSize)
    
                Dim DirectoryA As String = FileDIR.Text
                Dim Frame1 As String = FileNUM.Text
                Dim img1 As String = FileType.Text
    
                FileNUM.Text = FileNUM.Text + 1
                BMP.Save(DirectoryA & Frame1 & img1)
    
            End If
        End Sub
    
        Private Sub Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button9.Click
            VideoScreenWindow.Show()
        End Sub
    
        Private Sub Button10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button10.Click
            VideoScreenWindow.Hide()
        End Sub
    
    
        Private Sub INT10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT10.Click
            IO.Text = "100 FPS"
            RECScreen.Interval = "10"
        End Sub
    
        Private Sub INT50_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT50.Click
            IO.Text = "20 FPS"
            RECScreen.Interval = "50"
        End Sub
    
        Private Sub INT100_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT100.Click
            IO.Text = "10 FPS"
            RECScreen.Interval = "100"
        End Sub
    
        Private Sub INT250_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT250.Click
            IO.Text = "04 FPS"
            RECScreen.Interval = "250"
        End Sub
    
        Private Sub INT500_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT500.Click
            IO.Text = "02 FPS"
            RECScreen.Interval = "500"
        End Sub
    
        Private Sub INT1000_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles INT1000.Click
            IO.Text = "01 FPS"
            RECScreen.Interval = "1000"
        End Sub
    
        Private Sub REC_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles REC.Click
            RECScreen.Enabled = True
            FileNUM.Text = "0"
        End Sub
    
        Private Sub STP_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles STP.Click
            RECScreen.Enabled = False
        End Sub
    End Class
    NO CODE GO's INTO FORM2
    If you have any errors ask me

    HOW TO USE:
    1.Pick you fps
    2.In the FileDIR textbox select the folder you want to save your video(it really just takes like 100 pics every 10 sec)
    3.Press record, record what you need to record
    4.Press stop
    5.Check the checkbox and press video on then press record to playback your video.
    6.Your done

    I will post my video recorder and the already built project tomorrow.
    If any one figures out how to save this into a video format such as AVI,ETC. please tell me.

  2. The Following 3 Users Say Thank You to trevor206 For This Useful Post:

    Highlander (03-09-2010),Houston (12-07-2009),Pixie (12-05-2009)

  3. #2
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused

    I think thats how its made into .avi file

  4. The Following User Says Thank You to Bombsaway707 For This Useful Post:

    Pixie (12-05-2009)

  5. #3
    ark1227's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    I should know this...
    Posts
    110
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish
    nice tut bro...
    it looks good to me
    My Goals
    • Make Web Browser [ ]
    • Make Calculator [ ]
    • Make a Keylogger [ ]
    • Make a Notepad [ ]
    • Make a Process Starter/Killer [ ]
    • Make an Injector [ ]
    • 10 Posts [ ]
    • 50 Posts [ ]
    • 100 Posts [ ]
    • 200 Posts [ ]

  6. #4
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Haha this is fun.

    One of my first programs was a vb screen recorder.

  7. #5
    iWAFFLE's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Houston
    Posts
    704
    Reputation
    10
    Thanks
    38
    My Mood
    Amused
    Looks cool,thanks for this!

  8. #6
    cru0's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    13
    My Mood
    Asleep

    i fixed some errors

    i fixed some liek begining is Public ect but i dont get this im new to it

    the Error:

    VideoScreenWindow is not declared

  9. #7
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    mb cru i forgot to add a that you have to make a picturebox on form2 and name it VideoScreenWindow.

  10. The Following User Says Thank You to trevor206 For This Useful Post:

    cru0 (12-07-2009)

  11. #8
    cru0's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    13
    My Mood
    Asleep

    ty

    Quote Originally Posted by trevor206 View Post
    mb cru i forgot to add a that you have to make a picturebox on form2 and name it VideoScreenWindow.
    thnx man this rulez

  12. #9
    sora295's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    san diego
    Posts
    93
    Reputation
    10
    Thanks
    8
    My Mood
    Aggressive
    got 13 errors spent hour for nothing

  13. #10
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Quote Originally Posted by sora295 View Post
    got 13 errors spent hour for nothing
    Well I believe you have errors so you can not just C&P and call it your own.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  14. #11
    guza44_44's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    431
    Reputation
    16
    Thanks
    310
    yes but i rather have a real one lol, but cant find tut.. GJ

Similar Threads

  1. Screen Recorder BETA
    By codyray90 in forum Visual Basic Programming
    Replies: 9
    Last Post: 11-27-2009, 01:01 PM
  2. Best Screen recorders?
    By :iTried: in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 08-17-2009, 04:22 AM
  3. On Screen Recorder?
    By Ariez in forum General
    Replies: 17
    Last Post: 07-06-2009, 05:10 AM
  4. Screen Recorder
    By raphaterz in forum General
    Replies: 7
    Last Post: 05-31-2009, 12:03 PM
  5. Screen Recording Software
    By InHuman in forum Battlefield Heroes Hacks
    Replies: 5
    Last Post: 05-21-2009, 05:28 PM