Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bb11

  1. bb11

    Saving values in a listbox

    It is simply added from a text box. There has to be a simple way to make it appear in the listbox when the program is closed and opened private void button1_Click(object sender, EventArgs e) { listBox1.Items.Add(textBox1.Text); }
  2. bb11

    Saving values in a listbox

    Im sure there is a easier way to make the text in a listbox appear when starting and closing a program.What is the quickest way and simplest way?
  3. bb11

    Saving values in a listbox

    When a program is running and a value is added to a listbox. How do i make the value stay there even when the program is being closed and opened again
  4. bb11

    Change Loops

    Is there a way to change the for loop to something else and to any other loops. How thanx for your help float result = float.Parse(memory[0].ToString()); for (int i = 0; i < memory.Count; i++) { if (memory[i].ToString() == "+") { result +=...
  5. bb11

    What does float.Parse do

    What does "float.Parse" do and what does float by it self do

Part and Inventory Search

Back
Top