Click here to Skip to main content
15,792,609 members
Home / Discussions / C#
   

C#

 
GeneralRe: Insert statment for multiple tables Pin
falles0130-Aug-07 20:18
falles0130-Aug-07 20:18 
GeneralRe: Insert statment for multiple tables Pin
falles0129-Aug-07 17:55
falles0129-Aug-07 17:55 
QuestionXML Attributes Pin
ytubis29-Aug-07 13:14
ytubis29-Aug-07 13:14 
AnswerRe: XML Attributes Pin
PIEBALDconsult29-Aug-07 14:17
professionalPIEBALDconsult29-Aug-07 14:17 
AnswerRe: XML Attributes Pin
Spacix One29-Aug-07 16:07
Spacix One29-Aug-07 16:07 
GeneralRe: XML Attributes Pin
ytubis29-Aug-07 20:54
ytubis29-Aug-07 20:54 
AnswerRe: XML Attributes Pin
Spacix One30-Aug-07 4:16
Spacix One30-Aug-07 4:16 
QuestionCreate Dynamic Buttons with EvenHandler C# Pin
I Believe In GOD29-Aug-07 11:39
I Believe In GOD29-Aug-07 11:39 
hi all , how you doing ??

I need to create about 50 button every one had an image ..
my Question is how I can determine which button I pressed ?!

please give me a hint ....

and here is my code .....

private void CreateButtons()<br />
		{<br />
			for (int x =0 ; x < 10 ; x++)<br />
			{<br />
				bs = new Button();<br />
				bs.ImageList = imageList1;<br />
				bs.ImageIndex = x;<br />
				bs.Size = new Size(17,17);<br />
				bs.Location = new Point(x * 17  , 0);<br />
				bs.Visible = true;<br />
				bs.Click += new EventHandler(bs_Click);<br />
				Controls.Add (bs);<br />
			}<br />
		}<br />
<br />
		private void bs_Click(object sender, System.EventArgs e)<br />
		{<br />
			Console.WriteLine ("Which Button I pressed");<br />
			<br />
		}


I know nothing , I know nothing

AnswerRe: Create Dynamic Buttons with EvenHandler C# [modified] Pin
Spacix One29-Aug-07 12:49
Spacix One29-Aug-07 12:49 
GeneralRe: Create Dynamic Buttons with EvenHandler C# Pin
I Believe In GOD30-Aug-07 1:13
I Believe In GOD30-Aug-07 1:13 
AnswerRe: Create Dynamic Buttons with EvenHandler C# Pin
BoneSoft29-Aug-07 13:20
BoneSoft29-Aug-07 13:20 
AnswerRe: Create Dynamic Buttons with EvenHandler C# Pin
PIEBALDconsult29-Aug-07 14:19
professionalPIEBALDconsult29-Aug-07 14:19 
AnswerRe: Create Dynamic Buttons with EvenHandler C# Pin
Not Active29-Aug-07 18:44
mentorNot Active29-Aug-07 18:44 
GeneralRe: Create Dynamic Buttons with EvenHandler C# Pin
I Believe In GOD30-Aug-07 1:21
I Believe In GOD30-Aug-07 1:21 
GeneralRe: Create Dynamic Buttons with EvenHandler C# Pin
Not Active30-Aug-07 3:10
mentorNot Active30-Aug-07 3:10 
QuestionDetermine Double-Click / Middle Click using low-level mouse hook? Pin
wienzzz29-Aug-07 10:47
wienzzz29-Aug-07 10:47 
AnswerRe: Determine Double-Click / Middle Click using low-level mouse hook? Pin
xfitr229-Aug-07 17:42
xfitr229-Aug-07 17:42 
GeneralRe: Determine Double-Click / Middle Click using low-level mouse hook? Pin
wienzzz29-Aug-07 20:11
wienzzz29-Aug-07 20:11 
GeneralRe: Determine Double-Click / Middle Click using low-level mouse hook? Pin
wienzzz29-Aug-07 20:38
wienzzz29-Aug-07 20:38 
QuestionHow do I write XML into XMLDocument? Pin
oceanexplorer29-Aug-07 10:40
oceanexplorer29-Aug-07 10:40 
AnswerRe: How do I write XML into XMLDocument? Pin
pmarfleet29-Aug-07 12:56
pmarfleet29-Aug-07 12:56 
AnswerRe: How do I write XML into XMLDocument? Pin
Spacix One29-Aug-07 13:01
Spacix One29-Aug-07 13:01 
QuestionModal Window in Smart Parts Pin
umashankergr829-Aug-07 10:22
umashankergr829-Aug-07 10:22 
AnswerRe: Modal Window in Smart Parts Pin
Michael Sync29-Aug-07 18:40
Michael Sync29-Aug-07 18:40 
GeneralRe: Modal Window in Smart Parts Pin
Alaric_30-Aug-07 3:21
professionalAlaric_30-Aug-07 3:21 

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.