ARTICLE

New Year Application using C#.Net

Posted by Prashanth Chindam Articles | C# Language January 03, 2011
Article to develop a windows application using C# .Net to wish a ‘Happy New Year’.
Reader Level:
Download Files:
 

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.


Login to add your contents and source code to this article
post comment
     

Thanks for Ur observation ~ Ur's Prashanth Chindam

Posted by Prashanth Chindam Jan 03, 2011

here 'S' is missing obj.Speak(str2 ,SpeechVoiceSpeakFlags.SVSFDefault);

Posted by Sandeep Shekhawat Jan 03, 2011
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.