Click here to Skip to main content
15,879,239 members
Home / Discussions / C#
   

C#

 
GeneralRe: Replacing items within a string Pin
Goaty651095-Mar-13 13:39
Goaty651095-Mar-13 13:39 
GeneralRe: Replacing items within a string Pin
NotPolitcallyCorrect5-Mar-13 14:26
NotPolitcallyCorrect5-Mar-13 14:26 
GeneralRe: Replacing items within a string Pin
Goaty651095-Mar-13 15:30
Goaty651095-Mar-13 15:30 
GeneralRe: Replacing items within a string Pin
SoMad5-Mar-13 23:21
professionalSoMad5-Mar-13 23:21 
GeneralRe: Replacing items within a string Pin
NotPolitcallyCorrect6-Mar-13 2:16
NotPolitcallyCorrect6-Mar-13 2:16 
GeneralRe: Replacing items within a string Pin
Bogza.Anton5-Mar-13 14:45
Bogza.Anton5-Mar-13 14:45 
GeneralRe: Replacing items within a string Pin
Goaty651095-Mar-13 15:32
Goaty651095-Mar-13 15:32 
GeneralRe: Replacing items within a string Pin
Bogza.Anton5-Mar-13 15:58
Bogza.Anton5-Mar-13 15:58 
For example:
C#
private void SomeForm_Load(object sender, EventArgs e)
{
   string cifTime = timeCIF.Text;
   string chkCIF = "N";
   emailBody.Text = "Example\nCIF = " + chkCIF + "\nTIME = " + timeCIF.Text;
}

private void SomeBtn_Click(object sender, EventArgs e)
{
   string[] sLines = emailBody.Lines;
   sLines[1] = emailBody.Lines[1].Remove(6, 1).Insert(6, "Y");
   emailBody.Lines = sLines;
}

AnswerRe: Replacing items within a string Pin
Richard MacCutchan5-Mar-13 22:36
mveRichard MacCutchan5-Mar-13 22:36 
GeneralRe: Replacing items within a string Pin
NotPolitcallyCorrect6-Mar-13 2:52
NotPolitcallyCorrect6-Mar-13 2:52 
GeneralRe: Replacing items within a string Pin
Richard MacCutchan6-Mar-13 6:18
mveRichard MacCutchan6-Mar-13 6:18 
Questiondisplay chart Pin
Member 98700585-Mar-13 9:42
Member 98700585-Mar-13 9:42 
AnswerRe: display chart Pin
Jegan Thiyagesan5-Mar-13 23:03
Jegan Thiyagesan5-Mar-13 23:03 
GeneralRe: display chart Pin
Member 98700586-Mar-13 3:32
Member 98700586-Mar-13 3:32 
QuestionWhat is the best way to create a matrix in C#? Pin
raymond leadingham5-Mar-13 7:09
raymond leadingham5-Mar-13 7:09 
AnswerRe: What is the best way to create a matrix in C#? Pin
Matt T Heffron5-Mar-13 7:28
professionalMatt T Heffron5-Mar-13 7:28 
GeneralRe: What is the best way to create a matrix in C#? Pin
raymond leadingham5-Mar-13 7:35
raymond leadingham5-Mar-13 7:35 
AnswerRe: What is the best way to create a matrix in C#? Pin
Ennis Ray Lynch, Jr.5-Mar-13 8:05
Ennis Ray Lynch, Jr.5-Mar-13 8:05 
GeneralRe: What is the best way to create a matrix in C#? Pin
raymond leadingham5-Mar-13 8:09
raymond leadingham5-Mar-13 8:09 
AnswerRe: What is the best way to create a matrix in C#? Pin
PIEBALDconsult5-Mar-13 12:37
mvePIEBALDconsult5-Mar-13 12:37 
Questionc# charts query in visual studio Pin
Member 98730285-Mar-13 5:39
Member 98730285-Mar-13 5:39 
AnswerRe: c# charts query in visual studio Pin
NotPolitcallyCorrect5-Mar-13 5:53
NotPolitcallyCorrect5-Mar-13 5:53 
GeneralRe: c# charts query in visual studio Pin
Member 98730285-Mar-13 6:19
Member 98730285-Mar-13 6:19 
QuestionSerious help uploading a file using C# in Asp.Net 3.5 higher Pin
vanikanc5-Mar-13 3:47
vanikanc5-Mar-13 3:47 
AnswerRe: Serious help uploading a file using C# in Asp.Net 3.5 higher Pin
Bill Warner5-Mar-13 4:31
Bill Warner5-Mar-13 4:31 

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.