Click here to Skip to main content
15,897,891 members
Articles / Programming Languages / C#

SMTP and POP3 Mail Server

Rate me:
Please Sign up or sign in to vote.
4.88/5 (96 votes)
29 Sep 20031 min read 1M   19K   315  
An SMTP and POP3 mail server written using the .NET Framework and C#.
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;

namespace LumiSoft.UI.Controls
{
	/// <summary>
	/// Summary description for WTextBoxBase.
	/// </summary>
	[System.ComponentModel.ToolboxItem(false)]
	public class WTextBoxBase : System.Windows.Forms.TextBox
	{
		/// <summary>
		/// 
		/// </summary>
		public event WMessage_EventHandler ProccessMessage;
		
		private WEditBox_Mask m_WEditBox_Mask = WEditBox_Mask.Text;
		private string        m_Text          = "";
		private int           m_DecPlaces     = 2;
		private decimal       m_DecMinValue   = -9999999999999;
		private decimal       m_DecMaxValue   =  9999999999999;
	//	private bool          m_Initing       = false;

		/// <summary> 
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		/// <summary>
		/// 
		/// </summary>
		public WTextBoxBase()
		{
			// This call is required by the Windows.Forms Form Designer.
			InitializeComponent();

			// TODO: Add any initialization after the InitForm call
		}

		#region function Dispose

		/// <summary> 
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#endregion

		#region Component Designer generated code
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			components = new System.ComponentModel.Container();
		}
		#endregion


		#region override WndProc

		/// <summary>
		/// 
		/// </summary>
		/// <param name="m"></param>
		protected override void WndProc(ref Message m)
		{	
			if(!OnWndProc(ref m)){				
				base.WndProc(ref m);
			}
		}

		#endregion

		#region override OnKeyPress

		/// <summary>
		/// 
		/// </summary>
		/// <param name="e"></param>
		protected override void OnKeyPress(KeyPressEventArgs e)
		{
			switch(m_WEditBox_Mask)
			{
				case WEditBox_Mask.Numeric:
					e.Handled = !IsNeedeKey_Numeric(e.KeyChar);
					break;

				case WEditBox_Mask.Date:
					e.Handled = Handle_Date(e.KeyChar);
					break;

		//		case WEditBox_Mask.IpAddress:
		//			Handle_Ip();
		//			break;

				default:
					break;
			}
						
			base.OnKeyPress(e);
		}

		#endregion

		#region override OnKeyDown

		/// <summary>
		/// 
		/// </summary>
		/// <param name="e"></param>
		protected override void OnKeyDown(KeyEventArgs e)
		{
			if(this.Mask == WEditBox_Mask.Date && e.KeyData == Keys.Delete){
				e.Handled = true;
			}

			base.OnKeyDown(e);
		}

		#endregion

		#region override OnTextChanged

		/// <summary>
		/// 
		/// </summary>
		/// <param name="e"></param>
		protected override void OnTextChanged(System.EventArgs e)
		{
			m_Text = base.Text;

			if(m_WEditBox_Mask == WEditBox_Mask.Numeric){
				if(this.Text.StartsWith("-")){
					this.ForeColor = Color.Red;
				}
				else{
					this.ForeColor = Color.Black;
				}
			}
			
			base.OnTextChanged(e);
		}
		
		#endregion

		#region overrise OnLostFocus

		/// <summary>
		/// 
		/// </summary>
		/// <param name="e"></param>
		protected override void OnLostFocus(System.EventArgs e)
		{
			base.OnLostFocus(e);

			if(m_WEditBox_Mask == WEditBox_Mask.Numeric){
				decimal d = this.DecValue;
				if(d > m_DecMaxValue){
					d = m_DecMaxValue;
					this.DecValue = d;
					return;
				}
				if(d < m_DecMinValue){
					d = m_DecMinValue;
					this.DecValue = d;
					return;
				}

				if(this.Text.Length > 0){
					if(this.Text != Convert.ToDecimal(this.Text).ToString("f" + m_DecPlaces.ToString())){
						this.Text = Convert.ToDecimal(this.Text).ToString("f" + m_DecPlaces.ToString());
					}
				}
				else{
					this.Text = d.ToString();
				}
			}
		}

		#endregion

				
		#region function Handle_Date

		private bool Handle_Date(char keyChar)
		{
			if(this.ReadOnly){
				return true;
			}

			int curIndex   = this.SelectionStart;
			string text    = this.Text;
			int monthIndex = 0;
			int dayIndex   = 3;
            			
			if(curIndex >= 10 || text.Length < 10){
				return true;
			}

			//--- Get if day->month->year or month->day->year ---//
			DateTime t     = new DateTime(2000,2,1);
			string   tStr  = t.ToShortDateString();
			if(tStr.IndexOf("1") > tStr.IndexOf("2")){
				dayIndex   = 3;
				monthIndex = 0;
			}
			else{
				dayIndex   = 0;
				monthIndex = 3;
			}
			//--------------------------------------------------//
			
			//--- Digit was pressed -------------------------------------//
			if(char.IsDigit(keyChar)){
			
				string nText = text.Insert(curIndex,keyChar.ToString());
					   nText = nText.Remove(curIndex+1,1);

				int newCursPos = ++curIndex;
					
				//--- If cursor in month block -------------------------//
				if(curIndex >= monthIndex && curIndex < monthIndex + 2){
					int mPos1Val = Convert.ToInt32(nText.Substring(monthIndex,1));
					int mPos2Val = Convert.ToInt32(nText.Substring(monthIndex + 1,1));
				
					// eg. |13 = 03 ('3' was pressed, '|' = cursor position where key pressed)
					if(mPos1Val > 1){
						nText = nText.Insert(monthIndex,"0");
						nText = nText.Remove(monthIndex + 1,1);

						nText = nText.Insert(monthIndex + 1,mPos1Val.ToString());
						nText = nText.Remove(monthIndex + 2,1);

						mPos2Val = mPos1Val;
						mPos1Val = 0;

						newCursPos = monthIndex + 3;
					}
	
					// eg. |13 = 10 ('1' was pressed, '|' = cursor position where key pressed)
					if(mPos1Val == 1 && mPos2Val > 2  && monthIndex == curIndex-1){
						nText = nText.Insert(monthIndex + 1,"0");
						nText = nText.Remove(monthIndex + 2,1);						
					}

					// eg. |00 = 01 ('0' was pressed, '|' = cursor position where key pressed)
					if(mPos1Val == 0 && mPos2Val == 0){
						nText = nText.Insert(monthIndex + 1,"1");
						nText = nText.Remove(monthIndex + 2,1);
					}
				}
				//----------------------------------------------------------------//

				//--- If cursor in day block ------------------------------------//
				if(curIndex >= dayIndex && curIndex < dayIndex + 2){
					int dPos1Val = Convert.ToInt32(nText.Substring(dayIndex,1));
					int dPos2Val = Convert.ToInt32(nText.Substring(dayIndex + 1,1));
					int month    = Convert.ToInt32(nText.Substring(monthIndex,2));
					int year     = Convert.ToInt32(nText.Substring(6,4));
				
					int maxDayPos1Val = 2;
					int maxDayPos2Val = 0;
					if(DateTime.DaysInMonth(year,month) >= 30){
						maxDayPos1Val = 3;
						maxDayPos2Val = DateTime.DaysInMonth(year,month)-30;
					}
					else{
						maxDayPos2Val = DateTime.DaysInMonth(year,month)-20;
					}

					// eg. |41 = 04 ('4' was pressed, '|' = cursor position where key pressed)
					if(dPos1Val > maxDayPos1Val){
						nText = nText.Insert(dayIndex,"0");
						nText = nText.Remove(dayIndex + 1,1);

						nText = nText.Insert(dayIndex + 1,dPos1Val.ToString());
						nText = nText.Remove(dayIndex + 2,1);

						dPos2Val = dPos1Val;
						dPos1Val = 0;

						newCursPos = dayIndex + 3;
					}

					// eg. |33 = 30 ('3' was pressed, '|' = cursor position where key pressed)
					if(dPos1Val == maxDayPos1Val && dPos2Val > maxDayPos2Val && dayIndex == curIndex-1){
						nText = nText.Insert(dayIndex + 1,"0");
						nText = nText.Remove(dayIndex + 2,1);
					}

					// eg. |00 = 01 ('0' was pressed, '|' = cursor position where key pressed)
					if(dPos1Val == 0 && dPos2Val == 0){
						nText = nText.Insert(dayIndex + 1,"1");
						nText = nText.Remove(dayIndex + 2,1);
					}

				}
				//----------------------------------------------------//

				if(IsDateOk(nText)){
					this.Text = nText;

					if(newCursPos < 9 && (nText.Substring(newCursPos,1) == "," || nText.Substring(newCursPos,1) == "." || nText.Substring(newCursPos,1) == "/")){
						newCursPos++;
					}
					this.SelectionStart = newCursPos;
				}
			}

			//---- Char was pressed -----------------------//
			else{
				string kChar = keyChar.ToString();
				if(kChar == "," || kChar == "."){

					if(curIndex > 0 && (text.Substring(curIndex-1,1) != "," || text.Substring(curIndex-1,1) != "." || text.Substring(curIndex-1,1) != "/")){
						if(text.IndexOf(".",curIndex) > -1){
							this.SelectionStart = text.IndexOf(".",curIndex) + 1;
						}
					}
				}
			}

			return true;
		}

		#endregion

		#region function IsNeedeKey_Numeric

		private bool IsNeedeKey_Numeric(char pressedChar)
		{
			if(this.ReadOnly){
				return true;
			}

			char decSep = Convert.ToChar(System.Globalization.NumberFormatInfo.CurrentInfo.NumberDecimalSeparator);
			string val         = base.Text;
			bool   isSeparator = val.IndexOf(decSep) > -1;
			int    length      = val.Length;
			int    curPos      = this.SelectionStart;
			int    sepPos      = val.IndexOf(decSep);

			//--- Clear selection if any 
			if(this.SelectionLength > 0){
				val = val.Remove(this.SelectionStart,this.SelectionLength);
				length = val.Length;
			}

			string nText = val.Insert(curPos,pressedChar.ToString());
			
			// If char is number.
			if(char.IsDigit(pressedChar)){

				//---- Check that minimum and maximum isn't exceeded -----//				
				decimal decVal = Core.ConvertToDeciaml(nText);
				if(decVal > m_DecMaxValue || decVal < m_DecMinValue){
					return false;
				}
				//----------------------------------------------------------//
                
				// Don't allow to add '-' inside number.
				// Avoiding following numbers '6-12.00'.
				if(val.IndexOf("-") > -1 && val.IndexOf("-") > curPos-1){					
					return false;
				}
								
				// If number starts with '0' and pressedChar = '0', don't allow to enter number.
				// Avoiding following numbers '06'.				
				if(((val.StartsWith("0") && curPos == 1) || (val.StartsWith("-0") && curPos == 2))){
					return false;
				}
				
				// Check that decimal places aren't exceeded.
				if(isSeparator){
					// If current position is inside deciaml places '_,x|xx'.
					if(curPos > sepPos){
						if((curPos - sepPos) > m_DecPlaces){
							return false;
						}

						// If there is maximun number of decimal places.
						if((length - sepPos) > m_DecPlaces){
							string newVal = val.Remove(curPos,1);
							       newVal = newVal.Insert(curPos,pressedChar.ToString());

							this.Text = newVal;
							this.SelectionStart = curPos + 1; 
							return false;
						}
					}
				}

				// If '0' was pressed.
				if(pressedChar == '0'){					
					if(val.StartsWith("-") && length > 1 && curPos == 1){
						return false;					
					}

					if(length > 0 && curPos == 0){
						return false;	
					}
				}
				//----------------------------------------------------------//

				return true;
			}
			//------------- Decimal separator '. / ,' or '-' pressed ----------//
			else{				
				// Decimal separator pressed and there isn't any.
			//	if(pressedChar == decSep && !isSeparator && m_DecPlaces > 0){
				if(pressedChar == ',' || pressedChar == '.'){
					if(!isSeparator && m_DecPlaces > 0){
						// Check that decimal places aren't exceeded,
						// when setting decimal place in the middle on number.
						// eg. 232,312 and allowed decimal places = 2.
						if(length - curPos > m_DecPlaces){
							return false;
						}

						this.Text = val.Insert(curPos,decSep.ToString());
						this.SelectionStart = curPos + 1;

						return false;
					}
					else{
						// If there is already decimal separator, move after it.
						if(this.Text.IndexOf(decSep) > -1){
							this.SelectionStart = this.Text.IndexOf(decSep) + 1;
						}
					}					

				//	return true;
				}

				// If '-' pressed
				decimal decVal = Core.ConvertToDeciaml(nText);
				if(decVal > m_DecMinValue && pressedChar == '-'){
					if(!val.StartsWith("-") && curPos == 0){
						return true;
					}
				}

				// BackSpace pressed.
				if(pressedChar == '\b'){
					return true;
				}

				return false;
			}			
		}

		#endregion

		#region function Handle_Ip

		private void Handle_Ip()
		{
		}

		#endregion


		#region function IsDateOk

		private bool IsDateOk(string date)
		{
			try
			{
				DateTime dummy = Convert.ToDateTime(date);
				return true;
			}
			catch{
				return false;
			}
		}

		#endregion

		#region function DateToString

		private string DateToString(DateTime val)
		{
			string sep = System.Globalization.DateTimeFormatInfo.CurrentInfo.DateSeparator;
			string format = "";

			//--- Get if day->month->year or month->day->year ---//
			DateTime t     = new DateTime(2000,2,1);
			string   tStr  = t.ToShortDateString();					
			if(tStr.IndexOf("1") > tStr.IndexOf("2")){
				format = "MM" + sep + "dd" + sep + "yyyy";
			}
			else{
				format = "dd" + sep + "MM" + sep + "yyyy";
			}
			//--------------------------------------------------//

			return val.ToString(format);
		}

		#endregion


		#region Properties Implementation

		/// <summary>
		/// 
		/// </summary>
		public WEditBox_Mask Mask
		{
			get{ return m_WEditBox_Mask; }

			set{ 
				if(m_WEditBox_Mask != value){
					m_WEditBox_Mask = value;
					this.Text = "";
				}
			}
		}

		/// <summary>
		/// Gets or sets decimal places.
		/// </summary>
		public int DecimalPlaces
		{
			get{ return m_DecPlaces; }

			set{ m_DecPlaces = value; }
		}
		
		/// <summary>
		/// 
		/// </summary>
		[
		Browsable(true),
		DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
		]
		public DateTime DateValue
		{
			get{
				if(this.Mask == WEditBox_Mask.Date){
				//	if(this.Text.Length > 0){
						return Convert.ToDateTime(this.Text);
				//	}
				//	else{
				//		return DateTime.;
				//	}
				}

				return DateTime.Today;
			}

			set{
				if(this.Mask == WEditBox_Mask.Date){
					this.Text = DateToString(value);
				}
			}
		}

		/// <summary>
		/// 
		/// </summary>
		[
		Browsable(false),
		DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
		]
		public decimal DecValue
		{
			get{ 
				if(this.Mask == WEditBox_Mask.Numeric){
					try
					{
						return Convert.ToDecimal(this.Text);
					}
					catch{
						return 0;
					}
				}
				else{
					return 0;
				}
			}

			set{
				if(this.Mask == WEditBox_Mask.Numeric){
					this.Text = value.ToString("f" + m_DecPlaces.ToString());
				}
			}
		}

		/// <summary>
		/// Gets or sets text value.
		/// </summary>
		[
		Browsable(true),
		DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)
		]
		public override string Text
		{
			get{
				string retVal = m_Text;

				// For numeric box replace '' to 0.
				if(this.Mask == WEditBox_Mask.Numeric && retVal.Length == 0){
					retVal = "0";
				}

				if(this.Mask == WEditBox_Mask.Numeric && retVal == "-"){
					retVal = "0";
				}

				return retVal; 
			}

			set{	
				string val = value;
				switch(this.Mask)
				{
					case WEditBox_Mask.Numeric:
						if(val.Length == 0){
							val = "0";
						}

						char decSep = Convert.ToChar(System.Globalization.NumberFormatInfo.CurrentInfo.NumberDecimalSeparator);
						val = val.Replace(',',decSep);
						val = val.Replace('.',decSep);
						val = Core.ConvertToDeciaml(val).ToString("f" + m_DecPlaces.ToString());
						base.Text = val;
						break;

					case WEditBox_Mask.Date:
					//	string sep = System.Globalization.DateTimeFormatInfo.CurrentInfo.DateSeparator;
					//	val = val.Replace(".",sep);
					//	val = val.Replace("/",sep);

						if(!IsDateOk(val)){
							base.Text = DateToString(DateTime.Today);
						}
						else{
							base.Text = DateToString(Convert.ToDateTime(val));
						}
						break;

					default:
						base.Text = value;
						break;
				}
				
				this.Modified = false;
			}
		}

		/// <summary>
		/// 
		/// </summary>
		public decimal DecMinValue
		{
			get{ return m_DecMinValue; }

			set{
				m_DecMinValue = value;
			}
		}

		/// <summary>
		/// 
		/// </summary>
		public decimal DecMaxValue
		{
			get{ return m_DecMaxValue; }

			set{
				m_DecMaxValue = value;
			}
		}

		#endregion

		#region Events Implementation

		/// <summary>
		/// 
		/// </summary>
		/// <param name="m"></param>
		/// <returns></returns>
		public virtual bool OnWndProc(ref Message m)
		{
			if(ProccessMessage != null){
				return ProccessMessage(this,ref m);
			}

			return false;
		}

		#endregion

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions