Skip to content

Instantly share code, notes, and snippets.

@Stasonix
Created July 26, 2012 07:17
Show Gist options
  • Save Stasonix/3180718 to your computer and use it in GitHub Desktop.
Save Stasonix/3180718 to your computer and use it in GitHub Desktop.
Test IMG project
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace testimg
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
doimg pic = new doimg();
pic.picture(this);
}
private void Form1_Load(object sender, EventArgs e)
{
timer1.Enabled = true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment