Skip to main content
Email Password   helpLost your password?

Introduction

The application acts as an Alarm, Reminder, Mailer and Command Line executor all packed into one. You can set the timer to start an alarm after some specified time. You can also add a Message to pop up at that time to remind of something to be done. Or you could execute any commands from the command prompt or even better you can compose a mail that will be sent at the predetermined time. Now in case you want to send mail alone or execute a command without using the Timer then that too is possible.

Background

It all started as a simple Scheduler and then I started adding on these extra features when I came across difficulties faced by others on the Net with regard to:

Using the code

First we'll start off with the code related to the Timer: The implementation for this application has made some use of the Timer alarm code taken from the article Use a timer to create a simple alarm application by Andrew Boisen. My complements to you, Andrew Boisen. So you can refer to that article for detailed comments and the whole code that he has used. The additional input made was for the sound by using Kernel32.dll.You will have to use the System.Runtime.InteropServices namespace.

//For Sound

using System.Runtime.InteropServices;
Add this to your variable declarations.
//For Sound

[DllImport("Kernel32.dll")]
public static extern bool Beep(int freq, int duration);
Now that all that we need to make the sound is
Beep(1000,500);
For Sending Mail you need to add a reference to your project to System.Web. Then we need to add the System.Web and System.Web.Mail namespaces.
//For Mail

using System.Web;
using System.Web.Mail;
The code snippet shown below is self documentary. You can place this code in your button click event also.
// Construct a new mail message and fill it 

// with information from the form

MailMessage msgMail = new MailMessage();
msgMail.From = txtFrom.Text;       //From Textbox

msgMail.To = txtTo.Text;         //To Textbox

msgMail.Cc = txtCC.Text;           //CC Textbox 

msgMail.Bcc = txtBCC.Text;         //BCC Textbox

msgMail.Subject = txtSubject.Text; //Subject Textbox

msgMail.Body = txtMessage.Text;     //Message Textbox  

// if an attachment file is indicated, create it and add it to the message

if (txtAttachment.Text.Length > 0)
  msgMail.Attachments.Add(new MailAttachment(
    txtAttachment.Text, MailEncoding.Base64));
// Now send the message

SmtpMail.Send(msgMail);
// Indicate that the message has been sent

string strSentMail="";
strSentMail = "Message Sent to " + txtTo.Text;
if(txtCC.Text!="")
  strSentMail+= " Carbon Copy Sent to " + txtCC.Text;
if(txtBCC.Text!="")
  strSentMail+= " Blind Carbon Copy Sent to " + txtBCC.Text;
MessageBox.Show(strSentMail);
To get the command prompt to execute your commands and exit is done by the code snippet below. But first we need to use the System.Diagnostics namespace.
//For Command Line

using System.Diagnostics;
Then you can add this code snippet to get your command prompt.
//Declare and instantiate a new process component.

System.Diagnostics.Process process1;
process1= new System.Diagnostics.Process();
//Do not receive an event when the process exits.

process1.EnableRaisingEvents = false;
//The "/C" Tells Windows to Run The Command then Terminate 

string strCmdLine;
strCmdLine = "/C " + txtCmd.Text.Trim(); 
  //txtCmd is the text box where we enter the commands

System.Diagnostics.Process.Start("CMD.exe",strCmdLine);
process1.Close();

Points of Interest

The only nutty thing that I did was to have the mailing program and the command line executor added into the timer. So when the predetermined time was over you could send mail and execute commands. And you could execute the commands for any number of times depending on the number you inputted in the textbox with instances. (These options do work independent of the timer also.)

Conclusion

Its so easy to make a simple application really "un-simple??". Let me end with this quote - "If confusion is the first step to knowledge, I must be a genius."

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generalusing system.web.mail; Pin
VGstudios
17:34 6 Sep '07  
GeneralCode snippet comment Pin
sirdom
22:03 23 Oct '06  


Last Updated 25 May 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009