Click here to Skip to main content
15,927,862 members
Home / Discussions / C#
   

C#

 
AnswerRe: String Formatting Pin
Dustin Metzgar27-Jun-06 4:07
Dustin Metzgar27-Jun-06 4:07 
AnswerRe: String Formatting Pin
Not Active27-Jun-06 4:08
mentorNot Active27-Jun-06 4:08 
AnswerRe: String Formatting Pin
stancrm27-Jun-06 4:09
stancrm27-Jun-06 4:09 
AnswerRe: String Formatting Pin
jjansen27-Jun-06 4:16
jjansen27-Jun-06 4:16 
AnswerRe: String Formatting Pin
Judah Gabriel Himango27-Jun-06 4:17
sponsorJudah Gabriel Himango27-Jun-06 4:17 
GeneralRe: String Formatting Pin
Drew McGhie27-Jun-06 5:36
Drew McGhie27-Jun-06 5:36 
QuestionUsing classes on windows forms Pin
Mamphekgo27-Jun-06 3:56
Mamphekgo27-Jun-06 3:56 
AnswerRe: Using classes on windows forms Pin
stancrm27-Jun-06 4:02
stancrm27-Jun-06 4:02 
using System;
using System.Windows.Forms;

namespace TestForm
{
	public class Form1 : System.Windows.Forms.Form
	{
		// Defining a label
		private System.Windows.Forms.Label label1;
		private System.ComponentModel.Container components = null;

		public Form1()
		{
			this.SuspendLayout();
			
			// Create an instance of a label
			this.label1 = new System.Windows.Forms.Label();
			this.label1.Location = new System.Drawing.Point(24, 24);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(72, 16);
			this.label1.TabIndex = 0;
			this.label1.Text = "Hello World";
			this.Controls.Add(this.label1);

			// Set all property that you need for your form
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(120, 61);
			this.Name = "Form1";
			this.Text = "Form1";
			this.ResumeLayout(false);
		}

		[STAThread]
		static void Main() 
		{
			// Run the Form1
			Application.Run(new Form1());
		}
	}
}

AnswerRe: Using classes on windows forms Pin
Robert Rohde27-Jun-06 4:05
Robert Rohde27-Jun-06 4:05 
Questionhow to find all ip Pin
Bozhuk27-Jun-06 3:52
Bozhuk27-Jun-06 3:52 
AnswerRe: how to find all ip Pin
Judah Gabriel Himango27-Jun-06 4:18
sponsorJudah Gabriel Himango27-Jun-06 4:18 
QuestionWrong data - Network Stream Pin
shadow0127-Jun-06 2:57
shadow0127-Jun-06 2:57 
Questionhow can i send sms ... Pin
mostafa_h27-Jun-06 2:56
mostafa_h27-Jun-06 2:56 
AnswerRe: how can i send sms ... Pin
Judah Gabriel Himango27-Jun-06 4:19
sponsorJudah Gabriel Himango27-Jun-06 4:19 
QuestionLoading embedded cursor through ResourceManager Pin
jjansen27-Jun-06 2:55
jjansen27-Jun-06 2:55 
AnswerRe: Loading embedded cursor through ResourceManager Pin
Robert Rohde27-Jun-06 3:08
Robert Rohde27-Jun-06 3:08 
JokeRe: Loading embedded cursor through ResourceManager Pin
jjansen27-Jun-06 3:47
jjansen27-Jun-06 3:47 
AnswerRe: Loading embedded cursor through ResourceManager Pin
Josh Smith27-Jun-06 3:48
Josh Smith27-Jun-06 3:48 
GeneralRe: Loading embedded cursor through ResourceManager Pin
jjansen27-Jun-06 3:59
jjansen27-Jun-06 3:59 
GeneralRe: Loading embedded cursor through ResourceManager Pin
Josh Smith27-Jun-06 4:14
Josh Smith27-Jun-06 4:14 
QuestionInterfaces and factories Pin
Harvey Turtle27-Jun-06 2:42
Harvey Turtle27-Jun-06 2:42 
AnswerRe: Interfaces and factories Pin
Robert Rohde27-Jun-06 2:55
Robert Rohde27-Jun-06 2:55 
GeneralRe: Interfaces and factories Pin
Harvey Turtle27-Jun-06 3:08
Harvey Turtle27-Jun-06 3:08 
GeneralRe: Interfaces and factories Pin
Robert Rohde27-Jun-06 3:46
Robert Rohde27-Jun-06 3:46 
GeneralRe: Interfaces and factories Pin
Harvey Turtle27-Jun-06 3:51
Harvey Turtle27-Jun-06 3:51 

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.