mrstarrs
Member
Hey Console Crunch, Today i will be sharing this very good tutorail to make your own tool ( Windows Application) to
screen shot.
Step 1 : Start up microsoft visual (Your Version)
Step 2 : C# / Windows Form Application
Step 3 : Above the name space write
Step 4 : Make a layout, something like mine below.....
Step 5 : Double click the button saying " Take a screenshot"
Step 6 : Paste the following code when you double click it,
Step 7 : Customize your application (Depending on how you want it too look)
Step 8 : Find the .exe and spread it to friends and get compliments on how cool you are because you CODEEE BRAHH
** Also lets you save it to any destination / folder
P.s ** Dont hate on me this is my first program i ever made **
screen shot.
Step 1 : Start up microsoft visual (Your Version)
Step 2 : C# / Windows Form Application
Step 3 : Above the name space write
Code:
using System.Drawing.Imaging;
using System.IO;
Step 4 : Make a layout, something like mine below.....

Step 5 : Double click the button saying " Take a screenshot"
Step 6 : Paste the following code when you double click it,
Code:
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
System.Threading.Thread.Sleep(250);
int screenWidth = Screen.GetBounds(new Point(0, 0)).Width;
int screenHeight = Screen.GetBounds(new Point(0, 0)).Height;
Bitmap bmpScreenShot = new Bitmap(screenWidth, screenHeight);
Graphics gfx = Graphics.FromImage((Image)bmpScreenShot);
gfx.CopyFromScreen(0, 0, 0, 0, new Size(screenWidth, screenHeight));
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "PNG image | *.png| JPEG Image|*.jpg";
sfd.Title = "Save The ScreenShot";
sfd.ShowDialog();
if(sfd.FileName != "")
{
FileStream fs = (FileStream)sfd.OpenFile();
switch(sfd.FilterIndex)
{
case 1:
bmpScreenShot.Save(fs, ImageFormat.Png);
break;
case 2:
bmpScreenShot.Save(fs, ImageFormat.Jpeg);
break;
}
fs.Close();
}
this.Show();
this.Activate();
}
Step 7 : Customize your application (Depending on how you want it too look)
Step 8 : Find the .exe and spread it to friends and get compliments on how cool you are because you CODEEE BRAHH
** Also lets you save it to any destination / folder
P.s ** Dont hate on me this is my first program i ever made **