Click here to Skip to main content
15,909,325 members
Home / Discussions / C#
   

C#

 
GeneralRe: COM in C# for beginner Pin
Tim Paaschen10-Apr-07 23:03
Tim Paaschen10-Apr-07 23:03 
GeneralRe: COM in C# for beginner Pin
Stevo Z10-Apr-07 23:12
Stevo Z10-Apr-07 23:12 
GeneralRe: COM in C# for beginner Pin
Stevo Z11-Apr-07 3:05
Stevo Z11-Apr-07 3:05 
Questionwhat is the good approch for Logout ?? Pin
PavanPareta10-Apr-07 21:25
PavanPareta10-Apr-07 21:25 
AnswerRe: what is the good approch for Logout ?? Pin
_mubashir10-Apr-07 22:54
_mubashir10-Apr-07 22:54 
Questionmasking the text in textbox c#2003 Pin
vivek-g10-Apr-07 21:04
vivek-g10-Apr-07 21:04 
AnswerRe: masking the text in textbox c#2003 Pin
Martin#10-Apr-07 21:33
Martin#10-Apr-07 21:33 
AnswerRe: masking the text in textbox c#2003 Pin
Martin#10-Apr-07 21:45
Martin#10-Apr-07 21:45 
Hello again!

Here I found a very nice solution with regex!
public bool IsValidIPAddress(string ipAddr) {
   string pattern = @"^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}$";
   Regex reg = new Regex(pattern, RegexOptions.Singleline | RegexOptions.ExplicitCapture);
   return reg.IsMatch(ipAddr);
}

http://blog.devstone.com/Aaron/archive/2006/03/29/222.aspx[^]

All the best,

Martin
Questionhow to convert a doc file into html using C# Pin
dinud10-Apr-07 20:39
dinud10-Apr-07 20:39 
AnswerRe: how to convert a doc file into html using C# Pin
Jaiprakash M Bankolli10-Apr-07 20:54
Jaiprakash M Bankolli10-Apr-07 20:54 
GeneralRe: how to convert a doc file into html using C# Pin
Delta-Z10-Apr-07 22:06
Delta-Z10-Apr-07 22:06 
GeneralRe: how to convert a doc file into html using C# Pin
Jaiprakash M Bankolli10-Apr-07 22:11
Jaiprakash M Bankolli10-Apr-07 22:11 
GeneralRe: how to convert a doc file into html using C# Pin
Dan Neely11-Apr-07 2:13
Dan Neely11-Apr-07 2:13 
GeneralRe: how to convert a doc file into html using C# Pin
Jaiprakash M Bankolli11-Apr-07 2:57
Jaiprakash M Bankolli11-Apr-07 2:57 
Questiony problem of dropdownbox using repeater(updated) Pin
jaganil10-Apr-07 20:38
jaganil10-Apr-07 20:38 
Questiony problem of dropdownbox using repeater Pin
jaganil10-Apr-07 20:36
jaganil10-Apr-07 20:36 
QuestionAutomatically Update the application using Publish Pin
Neeraj Jain10-Apr-07 20:15
Neeraj Jain10-Apr-07 20:15 
QuestionC#.Net tutorials Pin
Malayil alex10-Apr-07 19:59
Malayil alex10-Apr-07 19:59 
AnswerRe: C#.Net tutorials Pin
Sathesh Sakthivel10-Apr-07 20:17
Sathesh Sakthivel10-Apr-07 20:17 
Questionin browsers (such as IE) how can emulate a button click event ? Pin
B.A10-Apr-07 19:46
B.A10-Apr-07 19:46 
AnswerRe: in browsers (such as IE) how can emulate a button click event ? Pin
Martin#10-Apr-07 20:41
Martin#10-Apr-07 20:41 
AnswerRe: in browsers (such as IE) how can emulate a button click event ? Pin
blackjack215010-Apr-07 22:03
blackjack215010-Apr-07 22:03 
GeneralRe: in browsers (such as IE) how can emulate a button click event ? Pin
B.A10-Apr-07 23:37
B.A10-Apr-07 23:37 
GeneralRe: in browsers (such as IE) how can emulate a button click event ? Pin
blackjack215011-Apr-07 0:06
blackjack215011-Apr-07 0:06 
GeneralRe: in browsers (such as IE) how can emulate a button click event ? Pin
blackjack215011-Apr-07 0:09
blackjack215011-Apr-07 0:09 

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.