Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [TUT]Screen RECORDER!!!

[TUT]Screen RECORDER!!!

Posts 1–11 of 11 · Page 1 of 1
TR
trevor206
[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.
[IMG]http://i950.photobucke*****m/albums/ad343/trevor206/1-2.png[/IMG]

Then make a new form and name it
VideoScreenWindow

on form2 make a picturebox named
VideoScreen

So form2 will look like this.
[IMG]http://i950.photobucke*****m/albums/ad343/trevor206/2-2.png[/IMG]


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.
#1 · 16y ago
Bombsaway707
Bombsaway707

I think thats how its made into .avi file
#2 · 16y ago
ark1227
ark1227
nice tut bro...
it looks good to me
#3 · 16y ago
Lolland
Lolland
Haha this is fun.

One of my first programs was a vb screen recorder.
#4 · 16y ago
iWAFFLE
iWAFFLE
Looks cool,thanks for this!
#5 · 16y ago
CR
cru0
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
#6 · 16y ago
TR
trevor206
mb cru i forgot to add a that you have to make a picturebox on form2 and name it VideoScreenWindow.
#7 · 16y ago
CR
cru0
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
#8 · 16y ago
sora295
sora295
got 13 errors spent hour for nothing
#9 · 16y ago
WT
wtfiwantthatname
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.
#10 · 16y ago
guza44_44
guza44_44
yes but i rather have a real one lol, but cant find tut.. GJ
#11 · 16y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • Screen Recording SoftwareBy InHuman in Battlefield Heroes Hacks
    5Last post 17y ago
  • On Screen Recorder?By Ariez in General
    17Last post 17y ago
  • Screen RecorderBy raphaterz in General
    7Last post 17y ago
  • Best Screen recorders?By :iTried: in Combat Arms Hacks & Cheats
    15Last post 17y ago
  • Screen Recorder BETABy codyray90 in Visual Basic Programming
    9Last post 16y ago

Tags for this Thread

None