Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
AnswerRe: Compile/decompile CHM files in C# Pin
Member 1624358015-Apr-24 0:18
Member 1624358015-Apr-24 0:18 
GeneralRe: Compile/decompile CHM files in C# Pin
trønderen15-Apr-24 3:19
trønderen15-Apr-24 3:19 
QuestionValidate emailaddress Pin
hitesh.kalra5-May-09 23:54
hitesh.kalra5-May-09 23:54 
AnswerRe: Validate emailaddress Pin
Pete O'Hanlon6-May-09 0:02
mvePete O'Hanlon6-May-09 0:02 
AnswerRe: Validate emailaddress Pin
MumbleB6-May-09 0:02
MumbleB6-May-09 0:02 
AnswerRe: Validate emailaddress Pin
OriginalGriff6-May-09 0:05
mveOriginalGriff6-May-09 0:05 
GeneralRe: Validate emailaddress Pin
Pete O'Hanlon6-May-09 0:16
mvePete O'Hanlon6-May-09 0:16 
GeneralRe: Validate emailaddress Pin
OriginalGriff6-May-09 0:31
mveOriginalGriff6-May-09 0:31 
GeneralRe: Validate emailaddress Pin
MumbleB6-May-09 0:57
MumbleB6-May-09 0:57 
GeneralRe: Validate emailaddress Pin
Mycroft Holmes6-May-09 1:15
professionalMycroft Holmes6-May-09 1:15 
GeneralRe: Validate emailaddress Pin
MumbleB6-May-09 2:03
MumbleB6-May-09 2:03 
GeneralRe: Validate emailaddress Pin
Pete O'Hanlon6-May-09 2:32
mvePete O'Hanlon6-May-09 2:32 
QuestionData gridview Pin
hitesh.kalra5-May-09 23:53
hitesh.kalra5-May-09 23:53 
AnswerRe: Data gridview Pin
Vimalsoft(Pty) Ltd6-May-09 0:24
professionalVimalsoft(Pty) Ltd6-May-09 0:24 
GeneralRe: Data gridview Pin
hitesh.kalra6-May-09 0:32
hitesh.kalra6-May-09 0:32 
GeneralRe: Data gridview Pin
Vimalsoft(Pty) Ltd6-May-09 0:58
professionalVimalsoft(Pty) Ltd6-May-09 0:58 
QuestionCrystal report Pin
hitesh.kalra5-May-09 23:45
hitesh.kalra5-May-09 23:45 
AnswerRe: Crystal report Pin
Sun Rays5-May-09 23:53
Sun Rays5-May-09 23:53 
GeneralRe: Crystal report Pin
hitesh.kalra5-May-09 23:56
hitesh.kalra5-May-09 23:56 
GeneralRe: Crystal report Pin
Sun Rays6-May-09 0:01
Sun Rays6-May-09 0:01 
GeneralRe: Crystal report Pin
hitesh.kalra6-May-09 0:03
hitesh.kalra6-May-09 0:03 
GeneralRe: Crystal report Pin
Sun Rays6-May-09 0:28
Sun Rays6-May-09 0:28 
Questioncmd.exe standardinput problem, please help?!?! Pin
Druuler5-May-09 23:41
Druuler5-May-09 23:41 
I have very weird problem with the windows command prompts standard input.
When i write regular dos command like cd or dir to the input stream everything goes as expected BUT when i want to execute a GUI app (say notepad) the window doesnt show up until i write some empty lines to the stream?Confused | :confused:

cmd.StandardInput.WriteLine("notepad");
cmd.StandardInput.Flush();
//notepad windows hanst shown up and will not show up untill
//i write empty lines/thrash to the input strem, btu the process notepad.exe is started with memory on ~1300 kb

cmd.StandardInput.WriteLine("blaaaaa");// notepad.exe's mem goes to 2000+ kb
cmd.StandardInput.WriteLine("blaaaaa");// notepad.exe's mem goes to 3000+ kb
cmd.StandardInput.WriteLine("blaaaaa");// and finally notepads window shows up

//allright, the notepad window is up now after i wrote those 3 lines but why is this happning?
//if i want to start visualstudio form cmd by writing to its input stream i have to write 5+ lines to //the stream


Please help..this is so weird, even my friend google couldnt help me OMG | :OMG:
AnswerRe: cmd.exe standardinput problem, please help?!?! Pin
12Code6-May-09 0:25
12Code6-May-09 0:25 
GeneralRe: cmd.exe standardinput problem, please help?!?! Pin
Druuler6-May-09 0:31
Druuler6-May-09 0: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.