Jennifer Bell

Jennifer Bell

  • NA
  • 14
  • 13.9k

Sorting Gui Program

Nov 25 2012 8:04 PM


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;



namespace

{

  public partial class Form1 : Form

  {

  public Form1()

  {

  InitializeComponent();

  }



  private void button1_Click(object sender, EventArgs e)

  {



  }



  private void button2_Click(object sender, EventArgs e)

  {



  }

  }

}


Im trying to create a program that sorts 3 numbers in ascending and descending order by the press of either button. I added the 2 buttons but as of right now they have no value to them. The 3 numbers need to be inserted into a text box. Ex) text box 1, text box 2, text box 3. I am stuck any guidance would be great.  Please and thank you!
 


 
 
 
 
 
 
 
 
 

 
 


Answers (4)