Reputation: 27
Say for example a user click a button to edit something I wound like a box to pop telling them to insert what they want to edit.
Upvotes: 0
Views: 280
Reputation: 4663
If it is VC++ and you are using MFC then what you need to do is create a DialogBox with edit control in it and show the dialog box for the user to enter value.
If it is windows form try this
Form f = new Form(); f.ShowDialog(this);
Upvotes: 1