Create a Screen Recorder. - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: Create a Screen Recorder. (/showthread.php?tid=6145) |
Create a Screen Recorder. - hockeynut35 - 04-12-2010 This Basic tutorial will show you how to make a simple screen recorder. Step 1. -Create a new Windows ApplicationPublic Class ScreenRecorder Step 2. -Add a reference to System.Drawing.dll, and System.Windows.Forms.dll Use this code; Code: Public Class ScreenRecorder To use the Codes Start: Code: ScreenRecorder.Start Stop Code: ScreenRecorder.Stop Save Code: ScreenRecorder.Save("") Select Window to Record Code: ScreenRecorder.Bounds = New System.Drawing.Rectangle(300, 300, 500, 300) Delete the "Movie" Code: ScreenRecorder.ClearRecording() This is a very simple tutorial to follow. Feel free to modify/ add your own functions! Hope you found this helpfull RE: Create a Screen Recorder. - Sam - 04-12-2010 Ahh sweet!! I'm going to try this right now! RE: Create a Screen Recorder. - hockeynut35 - 04-12-2010 (04-12-2010, 07:38 AM)Sam Wrote: Ahh sweet!! I'm going to try this right now! . It works pretty well for something that takes ten minutes to code. RE: Create a Screen Recorder. - Sam - 04-12-2010 I'm going to expand on it and make loads of functions. RE: Create a Screen Recorder. - hockeynut35 - 04-12-2010 (04-12-2010, 07:54 AM)Sam Wrote: I'm going to expand on it and make loads of functions. Post any codes here and I'll add a, "if you would like to go more in depth" party RE: Create a Screen Recorder. - Christopher - 04-12-2010 Thanks for this, the people that are just learning can use this. Its a great Tut. 10/10 RE: Create a Screen Recorder. - hockeynut35 - 04-12-2010 (04-12-2010, 09:14 AM)ImPrune Wrote: Thanks for this, the people that are just learning can use this. Its a great Tut. 10/10 Thanks man. RE: Create a Screen Recorder. - Poppins - 04-12-2010 Very nice work. Should help new people when starting out in coding. Maybe make a common error section in order to deal with the same replies over and over again. But great work mate. -Poppins RE: Create a Screen Recorder. - RaZoR03 - 04-18-2010 Nice tut,thanks.... |