Click here to Skip to main content
15,799,019 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to remove space in a String? [modified] Pin
Muammar©2-Apr-07 22:49
Muammar©2-Apr-07 22:49 
AnswerHi i ahv this code just it will remove all spaces and special chars also Pin
sooreeagt2-Apr-07 22:15
sooreeagt2-Apr-07 22:15 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Christian Graus2-Apr-07 22:22
protectorChristian Graus2-Apr-07 22:22 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Muammar©2-Apr-07 22:31
Muammar©2-Apr-07 22:31 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Christian Graus2-Apr-07 23:52
protectorChristian Graus2-Apr-07 23:52 
QuestionC# HELP...here...about the popup file Pin
Missy Glory2-Apr-07 16:32
Missy Glory2-Apr-07 16:32 
AnswerRe: C# HELP...here...about the popup file Pin
Christian Graus2-Apr-07 16:46
protectorChristian Graus2-Apr-07 16:46 
AnswerRe: C# HELP...here...about the popup file Pin
liewcp2-Apr-07 17:07
liewcp2-Apr-07 17:07 
try this:-

private void button1_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = @"C:\Documents and Settings\Lohsk\My Documents\Introduction.txt";
process.StartInfo.ErrorDialog = true;
process.Start();
}
catch (Exception err)
{
MessageBox.Show(err.ToString());
}
}
AnswerRe: C# HELP...here...about the popup file Pin
Muammar©2-Apr-07 21:02
Muammar©2-Apr-07 21:02 
Questionhow to run exe file in ram (on the fly) ? Pin
hdv2122-Apr-07 16:22
hdv2122-Apr-07 16:22 
AnswerRe: how to run exe file in ram (on the fly) ? Pin
Christian Graus2-Apr-07 16:47
protectorChristian Graus2-Apr-07 16:47 
AnswerRe: how to run exe file in ram (on the fly) ? Pin
Muammar©2-Apr-07 21:05
Muammar©2-Apr-07 21:05 
QuestionHow to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 16:00
goldli2-Apr-07 16:00 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
Christian Graus2-Apr-07 16:48
protectorChristian Graus2-Apr-07 16:48 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 19:19
goldli2-Apr-07 19:19 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
Christian Graus2-Apr-07 23:49
protectorChristian Graus2-Apr-07 23:49 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli3-Apr-07 0:19
goldli3-Apr-07 0:19 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
Muammar©2-Apr-07 21:08
Muammar©2-Apr-07 21:08 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 21:29
goldli2-Apr-07 21:29 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
D1113-Apr-07 2:53
D1113-Apr-07 2:53 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
Douglas Troy3-Apr-07 8:53
Douglas Troy3-Apr-07 8:53 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli3-Apr-07 15:11
goldli3-Apr-07 15:11 
QuestionLive rich text box editing Pin
Esmo20002-Apr-07 14:53
Esmo20002-Apr-07 14:53 
AnswerRe: Live rich text box editing Pin
joon vh.3-Apr-07 0:28
joon vh.3-Apr-07 0:28 
QuestionCan i use GC.Collect() ? Pin
engsrini2-Apr-07 13:40
engsrini2-Apr-07 13:40 

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.