Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
data grid click event to generate label and text box in window form in C#

C# Code..

Thanks
Posted
Comments
Alexander Dymshyts 28-Jun-13 2:41am    
Did you try something?
Savalia Manoj M 28-Jun-13 3:00am    
Please specify what you exactly wan't??

1 solution

Simple - but it probably won't help you much...
C#
Label l = new Label;
l.Text = "Hello";
Controls.Add(l);
TextBox tb = new TextBox();
tb.Text = "World";
Controls.Add(tb);
 
Share this 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