T T
T T

Reputation: 27

How to create an InputTextBox in visual c++ form

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

Answers (1)

Jeeva
Jeeva

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

Related Questions