TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Nehru Kandasamy
NA
21
11.6k
button inside textbox custom control
Mar 6 2013 3:14 AM
create a textbox control in windows form
and add this code in FormLoad Event.
Button btn = new Button();
btn.Parent = textBox1;
textBox1.Controls.Add(btn);
btn.BackColor = Color.AliceBlue;
Cursor.Current = Cursors.WaitCursor;
btn.Dock = DockStyle.Right;
btn.Text = "Search!";
Reply
Answers (
0
)
How to add Country,State,City through different pages
Modal PopUp in Class Library?