Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
GeneralRe: Textbox zooming Pin
Ingo7-Feb-06 23:06
Ingo7-Feb-06 23:06 
QuestionAutomated windows logon Pin
Esmo20007-Feb-06 20:59
Esmo20007-Feb-06 20:59 
AnswerRe: Automated windows logon Pin
Sean Michael Murphy8-Feb-06 7:07
Sean Michael Murphy8-Feb-06 7:07 
QuestionSuggestions and ideas wanted Pin
RobinCox7-Feb-06 19:51
RobinCox7-Feb-06 19:51 
AnswerRe: Suggestions and ideas wanted Pin
Ingo7-Feb-06 23:09
Ingo7-Feb-06 23:09 
GeneralRe: Suggestions and ideas wanted Pin
RobinCox8-Feb-06 7:16
RobinCox8-Feb-06 7:16 
QuestionString Escapes Pin
Expert Coming7-Feb-06 19:28
Expert Coming7-Feb-06 19:28 
AnswerRe: String Escapes Pin
DigitalKing7-Feb-06 20:32
DigitalKing7-Feb-06 20:32 
Embedding a quote into a string with \" does remove the \ on runtime, unless you are accepting input from the user, in which case, you do not need to escape the quote.

If you are trying to make a reusable Regex statement, you will always want to do:
Regex rxFind = new Regex(Regex.Escape(szQuery));
This makes sure that all characters that are part of the syntax of reguar expressions are translated so that they do not effect the expression.

Seperately, you could add more slashes (\\\" instead of \"), because they are significant in Regexes.
QuestionToolTips for custom tabs Pin
Libor Tinka7-Feb-06 13:45
Libor Tinka7-Feb-06 13:45 
AnswerRe: ToolTips for custom tabs Pin
Ingo7-Feb-06 23:14
Ingo7-Feb-06 23:14 
GeneralRe: ToolTips for custom tabs Pin
Libor Tinka7-Feb-06 23:37
Libor Tinka7-Feb-06 23:37 
GeneralRe: ToolTips for custom tabs Pin
Ingo8-Feb-06 0:24
Ingo8-Feb-06 0:24 
GeneralRe: ToolTips for custom tabs Pin
Libor Tinka8-Feb-06 1:19
Libor Tinka8-Feb-06 1:19 
QuestionAnimate Window Pin
Sean897-Feb-06 13:22
Sean897-Feb-06 13:22 
AnswerRe: Animate Window Pin
DigitalKing7-Feb-06 15:24
DigitalKing7-Feb-06 15:24 
GeneralRe: Animate Window Pin
Sean897-Feb-06 16:02
Sean897-Feb-06 16:02 
GeneralRe: Animate Window Pin
DigitalKing7-Feb-06 16:34
DigitalKing7-Feb-06 16:34 
QuestionRegEx Pin
Expert Coming7-Feb-06 12:21
Expert Coming7-Feb-06 12:21 
AnswerRe: RegEx Pin
Guffa7-Feb-06 13:13
Guffa7-Feb-06 13:13 
GeneralRe: RegEx Pin
Expert Coming7-Feb-06 13:41
Expert Coming7-Feb-06 13:41 
QuestionHelp - Code Pin
Expert Coming7-Feb-06 14:21
Expert Coming7-Feb-06 14:21 
AnswerRe: Help - Code Pin
Guffa7-Feb-06 14:40
Guffa7-Feb-06 14:40 
GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 14:56
Expert Coming7-Feb-06 14:56 
AnswerRe: Help - Code Pin
DigitalKing7-Feb-06 15:12
DigitalKing7-Feb-06 15:12 
GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 16:35
Expert Coming7-Feb-06 16:35 

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.