Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
QuestionDownload files from FTP Pin
Sallu174916-Jul-07 2:31
Sallu174916-Jul-07 2:31 
AnswerRe: Download files from FTP Pin
Le centriste16-Jul-07 2:44
Le centriste16-Jul-07 2:44 
GeneralRe: Download files from FTP Pin
Sallu174916-Jul-07 3:42
Sallu174916-Jul-07 3:42 
GeneralRe: Download files from FTP Pin
Le centriste16-Jul-07 3:45
Le centriste16-Jul-07 3:45 
AnswerRe: Download files from FTP Pin
Scott Dorman16-Jul-07 5:10
professionalScott Dorman16-Jul-07 5:10 
QuestionInitialization error - how to prevent Pin
fracalifa16-Jul-07 2:23
fracalifa16-Jul-07 2:23 
AnswerRe: Initialization error - how to prevent Pin
Luc Pattyn16-Jul-07 2:41
sitebuilderLuc Pattyn16-Jul-07 2:41 
GeneralRe: Initialization error - how to prevent Pin
fracalifa16-Jul-07 2:51
fracalifa16-Jul-07 2:51 
Here is the code ... nothing spectacular

public class Info_Start : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Timer timer1;
		private System.ComponentModel.IContainer components;

		public Info_Start()
		{
			//
			// Erforderlich für die Windows Form-Designerunterstützung
			//
			InitializeComponent();
			timer1.Interval = 5000;
			timer1.Start();
			this.TopMost=true;
			}

		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Info_Start));
			this.timer1 = new System.Windows.Forms.Timer(this.components);
			// 
			// timer1
			// 
			this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
			// 
			// Info_Start
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
			this.ClientSize = new System.Drawing.Size(512, 360);
			this.ControlBox = false;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MaximumSize = new System.Drawing.Size(520, 368);
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(520, 368);
			this.Name = "Info_Start";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.TopMost = true;
			this.Click += new System.EventHandler(this.Info_Start_Click);
			this.Activated += new System.EventHandler(this.Info_Start_Activated);

		}
		#endregion

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


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

	}
}


that's all ...
GeneralRe: Initialization error - how to prevent Pin
Luc Pattyn16-Jul-07 3:16
sitebuilderLuc Pattyn16-Jul-07 3:16 
GeneralRe: Initialization error - how to prevent Pin
fracalifa16-Jul-07 3:56
fracalifa16-Jul-07 3:56 
GeneralRe: Initialization error - how to prevent Pin
Luc Pattyn16-Jul-07 4:18
sitebuilderLuc Pattyn16-Jul-07 4:18 
GeneralRe: Initialization error - how to prevent Pin
fracalifa16-Jul-07 4:51
fracalifa16-Jul-07 4:51 
QuestionWorking with multiple monitors Pin
M. J. Jaya Chitra16-Jul-07 1:18
M. J. Jaya Chitra16-Jul-07 1:18 
AnswerRe: Working with multiple monitors Pin
originSH16-Jul-07 1:56
originSH16-Jul-07 1:56 
GeneralRe: Working with multiple monitors Pin
M. J. Jaya Chitra16-Jul-07 2:03
M. J. Jaya Chitra16-Jul-07 2:03 
GeneralRe: Working with multiple monitors Pin
originSH16-Jul-07 2:11
originSH16-Jul-07 2:11 
Questionproblem with Report Viewer In windows 98 Pin
michael@cohen16-Jul-07 1:10
michael@cohen16-Jul-07 1:10 
QuestionRe: problem with Report Viewer In windows 98 Pin
Vikram A Punathambekar16-Jul-07 1:29
Vikram A Punathambekar16-Jul-07 1:29 
AnswerRe: problem with Report Viewer In windows 98 Pin
michael@cohen16-Jul-07 1:37
michael@cohen16-Jul-07 1:37 
QuestionSchedule Auto Update Pin
GermanDM16-Jul-07 1:02
GermanDM16-Jul-07 1:02 
QuestionDateTime Problem Pin
Mohammed Elkholy15-Jul-07 23:44
Mohammed Elkholy15-Jul-07 23:44 
AnswerRe: DateTime Problem Pin
Manas Bhardwaj16-Jul-07 0:11
professionalManas Bhardwaj16-Jul-07 0:11 
GeneralRe: DateTime Problem Pin
Colin Angus Mackay16-Jul-07 0:18
Colin Angus Mackay16-Jul-07 0:18 
AnswerRe: DateTime Problem Pin
Rhys Gravell16-Jul-07 0:12
professionalRhys Gravell16-Jul-07 0:12 
AnswerRe: DateTime Problem Pin
Vikram A Punathambekar16-Jul-07 0:30
Vikram A Punathambekar16-Jul-07 0:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.