Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / C#

TeboScreen: Basic C# Screen Capture Application

Rate me:
Please Sign up or sign in to vote.
4.76/5 (78 votes)
18 Feb 2012CPOL5 min read 467.5K   38.5K   226  
A C# screensaver application to illustrate simple screen capture principles
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Teboscreen
    {
    public partial class tips : Form
        {

        private Form m_InstanceRef = null;
        public Form InstanceRef
            {
            get
                {
                return m_InstanceRef;
                }
            set
                {
                m_InstanceRef = value;
                }
            }

        public tips(string[] Parms)
            {
            InitializeComponent();
            lblTitle.Text = Parms[0];
            }

        private void button3_Click(object sender, EventArgs e)
            {
            this.Close();
            }

        private void tips_Load(object sender, EventArgs e)
            {

            }
        }
    }

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
Graduated with BSc(hons) in Information Systems in 1992 and have had to learn pretty much everything on the job since then.

Currently: Software Developer (Oracle, .NET and Javascript).
Used to be: Developer (SQL Server and .NET), Analyst(Using Oracle, SAS, Excel...) and before that a SQLServer 2000 DBA, Microsoft XAL developer.

Main skill set includes SQL Server, PL/SQL, C#, Javascript, VB .NET, Access, Excel, Word - VBA, SAS...


Interests include reading and things that fly.
I am a keen origami(paper folding) amateur.
Was once a classical guitarist, however Metallica have corrupted my tastes.

I run teboweb.com as a hobby

Comments and Discussions