May i know how to create textbox using code and store the design in window form, next time i open the form that must be same as previous i designed.
howard.teoh.7 0 Newbie Poster
Recommended Answers
Jump to Post// Initialize a new textbox TextBox txt = new TextBox(); // Set the dimension and location txt.Top = 10; txt.Left = 10; txt.Width = 100; txt.Height = 25; // Set the visibility and add it to the form txt.Visible = true; this.Controls.Add(txt);
For saving....
Save all …
All 3 Replies
ChrisHunter 152 Posting Whiz in Training Featured Poster
samsylvestertty 12 Newbie Poster
howard.teoh.7 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.