New Year Application using C#.Net


Objective:

To develop a windows application using the Microsoft Speech Object Library in C# .Net to wish a 'Happy New Year'.

Steps:

1. Goto 'Project' Menu -> Select 'AddReference'-> Click on 'COM' tab.

Select 'Microsoft Speech Object Library' -> OK.

reference.png

Note: In order to make use of this COM component we have to include 'using SpeechLib' namespace in the code.

2. Design:


nyappdesign.png

Design the form as shown above with one Label, one TextBox and three Buttons.

3. Code:

using System;
using System.Windows.Forms;
using SpeechLib;
namespace newyearapp
{
    Public
partial class newyearapp : Form
    {  
        public newyearapp()
        {
            InitializeComponent();
        }
        string str1 = "wish you a happy and prosperous new year ", str2;
        SpVoice obj = new SpVoice(); 
        private void btnOK_Click(object sender, EventArgs e)
        {
            if (textBox1.Text.Trim().Length > 0)
            {
                str2 = str1 + textBox1.Text;
                obj.Speak(str2, SpeechVoiceSpeakFlags.SVSFDefault);
            }
            else
                obj.Speak(str1, SpeechVoiceSpeakFlags.SVSFDefault);
        }
        private void btnClear_Click(object sender, EventArgs e)
        {
            textBox1.Text = "";
        }
        private void btnExit_Click(object sender, EventArgs e)
        {
            this.Close();
        }
     }
}

Output

We will hear new year wishes.


Up Next
    Ebook Download
    View all

    FileInfo in C#

    Read by 9.7k people
    Download Now!
    Learn
    View all