kaisersoze Posted September 27, 2004 Posted September 27, 2004 How to create and load controls like textbox and label dynamically and access their values in runtime. Quote Note: I think as a programmer not as a human, so use my answer at your will
*Gurus* divil Posted September 27, 2004 *Gurus* Posted September 27, 2004 TextBox t; // Method t = new TextBox(); Controls.Add(t); t.Bounds = new Rectangle(100, 100, 150, 25); // Other method string val = t.Text; Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.