Click here to Skip to main content
15,885,182 members
Articles / Programming Languages / C#

Website Investigator

Rate me:
Please Sign up or sign in to vote.
4.36/5 (27 votes)
5 Aug 2009CPOL5 min read 47.4K   1.1K   50  
Gets website registration information
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace QIP_Country_Match
{
    public partial class Splash : Form
    {
        public Splash()
        {
            InitializeComponent();
            form1 = new Form1();
        }

        private void Splash_Load(object sender, EventArgs e)
        {
            
            tmrWasteTime.Start();
        }

        
        private void tmrFader_Tick(object sender, EventArgs e)
        {
            if(this.Opacity >0.01)
                this.Opacity = this.Opacity - 0.03;
            else
                kill_tmrFader();
        }

        Form1 form1;
        private void kill_tmrFader()
        {
            

            tmrFader.Stop();
            
            form1.Show();
            this.Hide();
        }

        int waste;
        private void tmrWasteTime_Tick(object sender, EventArgs e)
        {
            if (waste < 2)
                waste++;
            else
                kill_tmrWasteTime();

        }

        private void kill_tmrWasteTime()
        {
            tmrWasteTime.Stop();
            tmrFader.Start();
        }

        private void lnk_website_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            System.Diagnostics.Process.Start(@"http://www.qsoftonline.com");
        }
    }
}

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
Retired QSoft
Yemen Yemen
Biography?! I'm not dead yet!
www.QSoftOnline.com

Comments and Discussions