vote up 0 vote down star

this is window application using c#, i wanna capture screen shot with timer, timer is set 5000 interval, as the timer is start, desktop screen captured with source window caption.

try
{
    System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
    timer.Tick += new EventHandler(timer2_Tick);
    timer.Interval = (100) * (50);
    timer.Enabled = true;
    timer.Start();

    ScreenShots sc = new ScreenShots();
    sc.pictureBox1.Image = system_serveillance.CaptureScreen.GetDesktopImage();

         while(sc.pictureBox1.Image != null)
            {
                sc.pictureBox1.Image.Save("s"+".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
                sc.pictureBox1.Image = null;
            }

this code is not working properly. please help me out

flag

19% accept rate
What that "while" loop is supposed to do? – Mehrdad Afshari Jun 12 at 12:18
Can you be a little more specific about what "not working properly" means. – ChrisF Jun 12 at 12:20
In Visual Studio, select the text "System.Windows.Forms.Timer" and press the F1 key. Read about how to use timers and how to hook up an event handler to them. The Help typically contains a small example which is very helpful. – NascarEd Jun 12 at 13:27

3 Answers

vote up 0 vote down

Also you are declaring your Timer inside the try - so if you leave that scope your Timer will no longer exist. And as it stands, your code will get trapped in the while and your GUI will be able to do nothing else. (I think).

link|flag
vote up 3 vote down

The timer isnt firing because your not handling the tick event. Pete has also pointed out your file will overwrite each tick.

It needs to look something more like this...(this isnt exact code but it should give you an idea)...

    private Int32 pictureCount = 0;

    public Form1()
    {
        timer1.Tick += new EventHandler(this.timer1_Tick);
        timer1.Interval = (100) * (50); 
        timer1.Enabled = true; 
        timer1.Start();
    }


    private void timer1_Tick(object sender, EventArgs e)
    {
        /* Screen capture logic here */
        sc.pictureBox1.Image.Save(pictureCount.ToString() + ".jpg", ImageFormat.Jpeg);                
        pictureCount++;
    }
link|flag
vote up 1 vote down

You've started your timer, but your screen save routine doesn't appear to be in your timer tick code (unless you've omitted the code from the post. Similarly, you will be overwriting s.jpg everytime, and I assume this isn't what you want. The use of a while clause is also odd here because you only need to perform an if test.

link|flag
i know it is now working properly, can you tell me how can i do this? – ankush Jun 12 at 12:32
sorry it is not working properly.. i want to capture screen as timer's time is complete with capture time and window caption. – ankush Jun 12 at 12:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.