Click here to Skip to main content
15,916,702 members
Home / Discussions / C#
   

C#

 
QuestionRemoting( Database as a Model , in a MVC pattern) Pin
Soviet30-Aug-05 10:25
Soviet30-Aug-05 10:25 
AnswerRe: Remoting( Database as a Model , in a MVC pattern) Pin
if_mel_yes_else_no30-Aug-05 10:43
if_mel_yes_else_no30-Aug-05 10:43 
GeneralRe: Remoting( Database as a Model , in a MVC pattern) Pin
Soviet30-Aug-05 10:50
Soviet30-Aug-05 10:50 
GeneralRe: Remoting( Database as a Model , in a MVC pattern) Pin
if_mel_yes_else_no30-Aug-05 11:09
if_mel_yes_else_no30-Aug-05 11:09 
Questiontotally disconnect TcpClient Pin
tourji30-Aug-05 10:05
tourji30-Aug-05 10:05 
AnswerRe: totally disconnect TcpClient Pin
if_mel_yes_else_no30-Aug-05 10:11
if_mel_yes_else_no30-Aug-05 10:11 
AnswerRe: totally disconnect TcpClient Pin
mav.northwind31-Aug-05 23:18
mav.northwind31-Aug-05 23:18 
QuestionText Encoding Pin
Guinness4Strength30-Aug-05 9:25
Guinness4Strength30-Aug-05 9:25 
I want to convert the CR & LN characters to and from their decimal values.
so I would have a text variable set to "\r" and/or "\n" and I would want to display these values to the user as "13" and/or "10". Allow the user to changes these to other decimal values and convert back to the text equivalent for searching in strings.

I have the convestion from decimal to character as follows, but what about the other way around ?

string Data = INI.GetINI("Settings","Seperator","/13/10");
string [] Seps = Data.Split('/');
string m_Sep=null;
foreach(string Sep in Seps)
{
	if(Sep.Length==0)
		continue;
	m_Sep += (char)int.Parse(Sep);
}

AnswerRe: Text Encoding Pin
if_mel_yes_else_no30-Aug-05 9:40
if_mel_yes_else_no30-Aug-05 9:40 
GeneralRe: Text Encoding Pin
Guinness4Strength30-Aug-05 9:51
Guinness4Strength30-Aug-05 9:51 
Questionregex Pin
surfman1930-Aug-05 9:04
surfman1930-Aug-05 9:04 
AnswerRe: regex Pin
Guffa30-Aug-05 9:16
Guffa30-Aug-05 9:16 
General[Message Deleted] Pin
surfman1930-Aug-05 9:24
surfman1930-Aug-05 9:24 
GeneralRe: regex Pin
surfman1930-Aug-05 9:28
surfman1930-Aug-05 9:28 
GeneralRe: regex Pin
User 665830-Aug-05 10:18
User 665830-Aug-05 10:18 
GeneralRe: regex Pin
Susan Hernandez31-Aug-05 15:31
Susan Hernandez31-Aug-05 15:31 
Questionforeach DataSet Pin
samoore30-Aug-05 6:19
samoore30-Aug-05 6:19 
QuestionRe: foreach DataSet Pin
Guffa30-Aug-05 8:29
Guffa30-Aug-05 8:29 
AnswerRe: foreach DataSet Pin
samoore30-Aug-05 9:31
samoore30-Aug-05 9:31 
QuestionCustom Sinks Pin
esjq30-Aug-05 5:58
esjq30-Aug-05 5:58 
AnswerRe: Custom Sinks Pin
esjq30-Aug-05 21:37
esjq30-Aug-05 21:37 
QuestionTransparency not just in forms Pin
if_mel_yes_else_no30-Aug-05 5:57
if_mel_yes_else_no30-Aug-05 5:57 
QuestionInstalling application using C# Pin
Samar Aarkotti30-Aug-05 5:53
Samar Aarkotti30-Aug-05 5:53 
AnswerRe: Installing application using C# Pin
Guinness4Strength30-Aug-05 9:31
Guinness4Strength30-Aug-05 9:31 
GeneralRe: Installing application using C# Pin
Anonymous30-Aug-05 12:19
Anonymous30-Aug-05 12:19 

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.