Click here to Skip to main content
15,883,749 members
Articles / Programming Languages / C#
Article

Multi-line InputBox control - MC++

Rate me:
Please Sign up or sign in to vote.
4.99/5 (62 votes)
7 Jun 2002CPOL1 min read 156.3K   2.2K   29   15
A .NET port of my MFC CFrameWnd derived InputBox class, written using MC++

Screenshots

Normal single-line InputBox

Image 1

Multi-line InputBox

Image 2

Demo app

Image 3

Using the class

Just add a reference to InputBox.dll in your project. The class is part of the namespace CodeProject.WinForms. So you might want to add

using CodeProject.WinForms
on top of your source files. Of course that is if you are using C#. For an MC++ app you need to put
using namespace 
CodeProject.Winforms 
on top of your source files.

InputBox Constructor

InputBox(); - This creates a normal InputBox with a single Input Line
InputBox(bool); - Depending on the bool you pass, this overload will create a multi-line InputBox if you pass true and a single line InputBox if you pass false

Example:-

InputBox m_ib = new InputBox();
InputBox m_multi_ib = new InputBox(true);

Show() - The key function

This has two overloads.

String* Show(String* prompt);<br>
String* Show(String* prompt, String* title);

prompt - This is the prompt text that will appear in the InputBox. It's a Label control and thus it will word wrap.

title - This is the window title of the InputBox

Return Value

The String that was entered is returned, if the OK button was clicked. If the Cancel button was clicked an empty string is returned.

Sample Code

InputBox m_ib = new InputBox(true);
this.textBox2.Text = m_ib.Show("Enter your address please.",
    "Your address");

The class structure

MC++
// InputBox.h

#pragma once

using namespace System;
using namespace System::ComponentModel;
using namespace System::Drawing;
using namespace System::Windows::Forms;


namespace CodeProject
{
    namespace WinForms
    {
        public __gc class InputBox
        {
        private:
            Form* InputForm;
            TextBox* InputText;
            Label* PromptText;
            Button* BtnOk;
            Button* BtnCancel;
            bool m_multiline;

            void InitializeComponent();
            String* Show();
            void BtnOk_Click(Object* sender,
                EventArgs* e);
            void BtnCancel_Click(Object* sender,
                EventArgs* e);
        public:
            InputBox();
            InputBox(bool);
            String* Show(String* prompt);
            String* Show(String* prompt, String* title);
            
        };
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
QuestionAnd where is the mfc-code? Pin
gunag3-Aug-06 2:45
gunag3-Aug-06 2:45 
GeneralCodeProject.WinForms Pin
sglaserintermet14-Jul-04 4:06
sglaserintermet14-Jul-04 4:06 
GeneralGreat work, Nish Pin
Tom Archer7-Jul-03 15:54
Tom Archer7-Jul-03 15:54 
GeneralRe: Great work, Nish Pin
Nish Nishant7-Jul-03 16:06
sitebuilderNish Nishant7-Jul-03 16:06 
GeneralA InputBox exists in the framework Pin
Rama Krishna Vavilala8-Jun-02 15:38
Rama Krishna Vavilala8-Jun-02 15:38 
GeneralRe: A InputBox exists in the framework Pin
Nish Nishant8-Jun-02 15:46
sitebuilderNish Nishant8-Jun-02 15:46 
GeneralRe: A InputBox exists in the framework Pin
Rama Krishna Vavilala8-Jun-02 15:55
Rama Krishna Vavilala8-Jun-02 15:55 
GeneralRe: A InputBox exists in the framework Pin
Nish Nishant8-Jun-02 16:02
sitebuilderNish Nishant8-Jun-02 16:02 
GeneralRe: A InputBox exists in the framework Pin
Kannan Kalyanaraman9-Jun-02 21:47
Kannan Kalyanaraman9-Jun-02 21:47 
GeneralRe: A InputBox exists in the framework Pin
Nish Nishant10-Jun-02 0:45
sitebuilderNish Nishant10-Jun-02 0:45 
GeneralRe: A InputBox exists in the framework Pin
Nish Nishant9-Feb-03 8:57
sitebuilderNish Nishant9-Feb-03 8:57 
GeneralRe: A InputBox exists in the framework Pin
Rama Krishna Vavilala10-Feb-03 3:45
Rama Krishna Vavilala10-Feb-03 3:45 
GeneralRe: A InputBox exists in the framework Pin
Nish Nishant10-Feb-03 18:21
sitebuilderNish Nishant10-Feb-03 18:21 
GeneralHeeeeyyyyy! Pin
Michael Dunn8-Jun-02 9:31
sitebuilderMichael Dunn8-Jun-02 9:31 
GeneralRe: Heeeeyyyyy! Pin
Nish Nishant8-Jun-02 13:34
sitebuilderNish Nishant8-Jun-02 13:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.