Total members 9952 | Gratitudes |It is currently Sat Feb 11, 2012 1:50 pm Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 1 post ] 
Author Question
 Question subject: add data from form1 textbox to form2 combo box
PostPosted: Mon Jan 18, 2010 5:11 am 
Offline
Newbie
User avatar

Joined: Thu Jun 25, 2009 1:03 am
Posts: 2
Has thanked: 0 time
Have thanks: 0 time

Code:
namespace Passing_Data
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 frm = new Form2(textBox1.Text);
            frm.Show();

        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
    }
}
FORM 2:
namespace Passing_Data
{
    public partial class Form2 : Form
    {
        public Form2(String strTextBox)
        {
            InitializeComponent();
            label1.Text = strTextBox;
        }

        private void Form2_Load(object sender, EventArgs e)
        {

        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }
    }
}

I have form one with textbox and button- I enter data in textbox and click button to take me to form 2. form two has label and combobox. data displays now in label.
I want to be able to enter data in textbox on form 1 and have it entered in combobox on page two.
I have tried combobox1.items.add(strTextBox) in form2 _load- not working
thank you


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 1 post ] 
Quick reply


  


 Similar topics
 Topic title   Forum   Author   Comments 
 Data Encryption Standard (DES)  Finished Projects  msi_333  13
 How to make PHP form data saved into txt file  PHP  Radu  6
 charm algorithm in data mining  Java  Anusha123  3
 Des java Applet ( Data Encryption Standards )  Java  msi_333  1
 How to merge the data into file  Java  Anonymous  1

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 1 guest



Jump to:  
Previous Question | Next Question 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team