Click here to Skip to main content
16,017,238 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to write coding in windows application using C#
Posted
Updated 4-Jun-10 1:28am
v4
Comments
Johnny J. 4-Jun-10 7:03am    
Reason for my vote of 1
What on earth are you talking about?
Smithers-Jones 4-Jun-10 7:37am    
Reason for my vote of 1
obviously you'd have to learn c#

The best option would be for you to get a book and read it.
 
Share this answer
 
ramakrishna 2010 wrote:
how to write coding in windows application using c#


You need to read books or tutorials to start with. Posting question here for now won't help much.
Go here:http://windowsclient.net/getstarted/[^]
 
Share this answer
 
I've tried both LiquidNitrogen AND the Babboon Framework, but when you get right down to it, nothings beats a healthy dose of book-learnin'.
 
Share this answer
 
i dont know how much new you are to .net because the question u asked doesnt show anything information from u..

i have added a basic program to find the greatest of three numbers
Add three textboxes(name them as txtA,txtB,txtC)and one Button COntrol in Form1.cs[design] and in buttonclick event write this code (in form1.cs)and press F5

C#
private void button1_Click(object sender, EventArgs e)
 {
     int a = Int32.Parse(txtA.Text);
     int b = Int32.Parse(txtB.Text);
     int c = Int32.Parse(txtC.Text);
     if ((a > b) && (b > c))
        MessageBox.Show("A is Greatest" + txtA.Text);
     else if ((a < b) && (b > c))
        MessageBox.Show("B is the Greatest" + txtB.Text);
     else if ((a < b) && (b < c))
        MessageBox.Show("C is the greatest" + txtC.Text);
     else if ((a == b) || (b == c) || (a == c))
        MessageBox.Show("two values or all the values are Same");
  }
 
Share this answer
 
v2
Comments
Johnny J. 4-Jun-10 7:23am    
Exactly in what way should this be helpful to the OP when you don't know what he's trying to do?
Johnny J. 4-Jun-10 7:23am    
Reason for my vote of 1
See comment below
Sandeep Mewara 4-Jun-10 8:32am    
Reason for my vote of 1
What are you trying to explain here? Please tell us the question asked and after that the answer!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900