ZengCode.Com (The Thai Php Framework)  


Home   Download   Manual   About us    

Facebook   


MAIN MENU
News
Php Tips
Android Programming
Design Pattern By PHP
C# using Linq น่าใช้จริงๆ
C# Tips & Technique
C# Design Pattern
Linux Quick Tips
Java & JavaScript Tips
Database & SQL
ZengCode Framework Guide
Zeng Code Code
Programming
IPhone (Tips and Trick)

Download เอกสารที่น่าสนใจ

     - Adding Removing Controls On The Runtime and Getting its Values.   (2009-11-10)

 This sample demontrates how to Add Controls on Runtime and how to remove them.
And also how to get values out of an Runtime Created Control.It Also demonstrates how to write event handlers for runtime created controls.

Controls Are Added by The Following Code..

 private void button1_Click(object sender, EventArgs e)
{
            j = j + 1;
            TextBox cntrl;
            LinkLabel labl;
            cntrl = new TextBox();
            cntrl.Text = "Text " + i.ToString();
            labl = new LinkLabel();
            labl.Name = "lbl" + j.ToString();
            labl.Text = "Remove Text Box";

            labl.Tag = cntrl;

            labl.Click += new EventHandler(RemoveControl);
            if (i < this.Height)
            {
                cntrl.Location = new Point(0, i);
                labl.Location = new Point(cntrl.Width + 5 , i);
                i = i + cntrl.Height +5;
                Controls.Add(cntrl);
                Controls.Add(labl);
            }
            else
            {
                MessageBox.Show("Cannot Add more Controls");
            }
}


Controls Are Removed by the Following Code

        public void RemoveControl(object sender, System.EventArgs e)
        {
                LinkLabel lbls=(LinkLabel)sender;
                this.Controls.Remove((LinkLabel)sender);
                this.Controls.Remove((TextBox)lbls.Tag);

        }


Values are retrived using the Following Code

     private void button2_Click(object sender, EventArgs e)
        {
            foreach (Control ctrl in Controls)
            {
                if (ctrl is TextBox)
                {
                    MessageBox.Show(((TextBox)ctrl).Text);
                }
            }
        }


Note that The Tag Property of the LinkLable Control is used to Store the information about the control next to it(TextBox) for Removing purpose only.

---------------------------


Comment
Name
Comment
Security CodeCAPTCHA Image

easy tracking
avis car rental discount code

This page took 0.093066 seconds to load.