Click here to Skip to main content
15,921,174 members
Home / Discussions / C#
   

C#

 
QuestionSmartPanel Refresh Problem Pin
Alan Seedhouse6-Mar-07 22:18
professionalAlan Seedhouse6-Mar-07 22:18 
QuestionPassword to reach one form to another.Please help me.tq very much. Pin
krajah106-Mar-07 22:15
krajah106-Mar-07 22:15 
AnswerRe: Password to reach one form to another.Please help me.tq very much. Pin
Keshav V. Kamat6-Mar-07 22:46
Keshav V. Kamat6-Mar-07 22:46 
AnswerRe: Password to reach one form to another.Please help me.tq very much. Pin
PS@Codeproj6-Mar-07 23:05
PS@Codeproj6-Mar-07 23:05 
QuestionWindows RClick menu. Pin
Radu Sorin6-Mar-07 22:04
Radu Sorin6-Mar-07 22:04 
AnswerRe: Windows RClick menu. Pin
Stefan Troschuetz6-Mar-07 22:58
Stefan Troschuetz6-Mar-07 22:58 
QuestionTo get projects/files from source basis on the label using Automation. Pin
Mushtaque Nizamani6-Mar-07 22:03
Mushtaque Nizamani6-Mar-07 22:03 
QuestionFocus on custom Cell when entering a Row in DataGridView Pin
freshonlineMax6-Mar-07 21:48
freshonlineMax6-Mar-07 21:48 
AnswerRe: Focus on custom Cell when entering a Row in DataGridView Pin
Keshav V. Kamat6-Mar-07 22:20
Keshav V. Kamat6-Mar-07 22:20 
GeneralRe: Focus on custom Cell when entering a Row in DataGridView Pin
freshonlineMax7-Mar-07 3:00
freshonlineMax7-Mar-07 3:00 
QuestionCrystal Report Alerts and reading report values in code Pin
Shaurya_Rastogi6-Mar-07 21:15
Shaurya_Rastogi6-Mar-07 21:15 
AnswerRe: Crystal Report Alerts and reading report values in code Pin
Shaurya_Rastogi13-Mar-07 23:34
Shaurya_Rastogi13-Mar-07 23:34 
Questionconverting .mdb -> binary .dat file? Pin
LuckySmoke6-Mar-07 20:57
LuckySmoke6-Mar-07 20:57 
AnswerRe: converting .mdb -> binary .dat file? Pin
Colin Angus Mackay6-Mar-07 21:20
Colin Angus Mackay6-Mar-07 21:20 
GeneralRe: converting .mdb -> binary .dat file? Pin
LuckySmoke6-Mar-07 21:37
LuckySmoke6-Mar-07 21:37 
GeneralRe: converting .mdb -> binary .dat file? Pin
PIEBALDconsult7-Mar-07 4:51
mvePIEBALDconsult7-Mar-07 4:51 
QuestionHow to restrict replay to a mail Pin
AR Reddy6-Mar-07 20:30
AR Reddy6-Mar-07 20:30 
AnswerRe: How to restrict replay to a mail Pin
Colin Angus Mackay6-Mar-07 21:22
Colin Angus Mackay6-Mar-07 21:22 
QuestionValidating Email Address Pin
dabuskol6-Mar-07 20:27
dabuskol6-Mar-07 20:27 
AnswerRe: Validating Email Address Pin
sam#6-Mar-07 20:35
sam#6-Mar-07 20:35 
AnswerRe: Validating Email Address Pin
goldli6-Mar-07 21:07
goldli6-Mar-07 21:07 
AnswerRe: Validating Email Address Pin
Wayne Phipps6-Mar-07 21:12
Wayne Phipps6-Mar-07 21:12 
This will match the pattern of an email address using a regex expression:

public bool EmailValid(string email)
{
    string _expression = @"^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}" +
        @"\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\" +
        @".)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$";

    return System.Text.RegularExpressions.Regex.IsMatch( email, _expression );
}


Hope this helps


Regards

Wayne Phipps
____________

Time is the greatest teacher... unfortunately, it kills all of its students
View my Blog

AnswerRe: Validating Email Address Pin
Scott Dorman8-Mar-07 17:31
professionalScott Dorman8-Mar-07 17:31 
QuestionMDI and OutOfMemoryException and CreateHandle() Pin
sarang.chandaikar6-Mar-07 20:15
sarang.chandaikar6-Mar-07 20:15 
AnswerRe: MDI and OutOfMemoryException and CreateHandle() Pin
VirtualVoid.NET7-Mar-07 1:26
VirtualVoid.NET7-Mar-07 1:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.