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

Display Confirmation message in Console application

Rate me:
Please Sign up or sign in to vote.
2.91/5 (13 votes)
5 Oct 2008CPOL1 min read 58.1K   275   9  
Display Confirmation message in Console application

Introduction

This article is for explaining how you can display a confirmation message in a console application like what we are displaying in windows application.

Background

My aim is to help those people who don’t know how to implement it. It is pretty simple if you know how to do it.

Using the code

My main aim is to show how to implement confirmation message in console application. I am using a simple application which will ask for the confirmation “Do you want to continue?” If you press yes it will write “Yes” in the console and if you press “no” it will write “No” in the console.

First create a sample console application. Here the name I had given is Sample. Please refer the image below. Sample

Now right click on sample and select add reference. Please refer the image below.

Sample

From the add reference window select the tab .net. From the list select the option “System.Windows.Forms” and then press “Ok” button. Please refer the image below.

Sample

Reference will get added to your project as shown in the below image.

Sample

After this, add the following statement to the top for your project using System.Windows.Forms;

Now we can use the Message box as we are using it in a windows application. Please look at the sample code below. In the code sample I am using the MessageBox in the console application.

C#
DialogResult ans = MessageBox.Show("Do you want to continue it?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
            if (ans == DialogResult.Yes)
            {
                Console.Write("Yes");
            }
            else
            {
                Console.Write("No");
            }

Please refer the image below.

Sample

Please find the attached code for more details

License

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


Written By
Software Developer Capgemini India
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --