[C#] Your Very Own Screen Shot Tool! [Tutorail]

  • Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

mrstarrs

Member
May 20, 2014
42
4
18
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

Code:
using System.Drawing.Imaging;
using System.IO;

Step 4 : Make a layout, something like mine below.....

vp7zg6.png



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 **
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ QM|T_JinX:
    haha i was talking dutch on this site no one even understands hahah
  • @ lurch6661:
    lol
  • @ QM|T_JinX:
    bro dont put my last name on here pls
  • @ lurch6661:
    my bad
  • @ QM|T_JinX:
    no worries
  • @ lurch6661:
    jinx vs paul
  • @ QM|T_JinX:
    hahaha
  • @ lurch6661:
    you would destroy him
  • @ QM|T_JinX:
    well i like to beleave so hahaha
  • @ lurch6661:
    you think you can make his weight class
  • @ QM|T_JinX:
    hahah not sure bro he a big guy
  • @ QM|T_JinX:
    you can tho
  • @ lurch6661:
    lol
  • @ QM|T_JinX:
    is the fight on the same date
  • @ lurch6661:
    in december i believe
  • @ QM|T_JinX:
    o ok
  • @ lurch6661:
    hi younis
  • @ lurch6661:
    how are you
  • @ lurch6661:
    lol
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    QM|T_JinX has joined the room.
      Chat Bot: QM|T_JinX has joined the room.