Click here to Skip to main content
15,905,419 members
Home / Discussions / C#
   

C#

 
AnswerRe: Sounds Pin
Dave Kreskowiak5-Jun-09 9:56
mveDave Kreskowiak5-Jun-09 9:56 
AnswerRe: Sounds Pin
DaveyM695-Jun-09 10:23
professionalDaveyM695-Jun-09 10:23 
AnswerRe: Sounds Pin
ARon_5-Jun-09 11:22
ARon_5-Jun-09 11:22 
QuestionRichTextBox does not have string property Pin
paradisonoir5-Jun-09 8:39
paradisonoir5-Jun-09 8:39 
AnswerRe: RichTextBox does not have string property Pin
Blue_Boy5-Jun-09 9:42
Blue_Boy5-Jun-09 9:42 
AnswerRe: RichTextBox does not have string property Pin
paradisonoir5-Jun-09 9:45
paradisonoir5-Jun-09 9:45 
QuestionSYSTEM RESTORE Pin
rick05565-Jun-09 7:19
rick05565-Jun-09 7:19 
AnswerRe: SYSTEM RESTORE Pin
EliottA5-Jun-09 7:27
EliottA5-Jun-09 7:27 
GeneralRe: SYSTEM RESTORE Pin
rick05565-Jun-09 13:22
rick05565-Jun-09 13:22 
AnswerRe: SYSTEM RESTORE Pin
I Believe In GOD5-Jun-09 7:29
I Believe In GOD5-Jun-09 7:29 
AnswerRe: SYSTEM RESTORE Pin
0x3c05-Jun-09 8:02
0x3c05-Jun-09 8:02 
AnswerRe: SYSTEM RESTORE Pin
Dave Kreskowiak5-Jun-09 9:51
mveDave Kreskowiak5-Jun-09 9:51 
GeneralRe: SYSTEM RESTORE Pin
rick05565-Jun-09 13:19
rick05565-Jun-09 13:19 
GeneralRe: SYSTEM RESTORE Pin
Dave Kreskowiak5-Jun-09 17:25
mveDave Kreskowiak5-Jun-09 17:25 
GeneralRe: SYSTEM RESTORE Pin
rick05565-Jun-09 20:04
rick05565-Jun-09 20:04 
QuestionParse out all the "{" + string + "}" occurences? Pin
_iobuf5-Jun-09 6:35
_iobuf5-Jun-09 6:35 
AnswerRe: Parse out all the "{" + string + "}" occurences? Pin
I Believe In GOD5-Jun-09 6:40
I Believe In GOD5-Jun-09 6:40 
GeneralRe: Parse out all the "{" + string + "}" occurences? Pin
_iobuf5-Jun-09 6:42
_iobuf5-Jun-09 6:42 
AnswerRe: Parse out all the "{" + string + "}" occurences? Pin
MidwestLimey5-Jun-09 6:41
professionalMidwestLimey5-Jun-09 6:41 
GeneralRe: Parse out all the "{" + string + "}" occurences? Pin
_iobuf5-Jun-09 6:44
_iobuf5-Jun-09 6:44 
AnswerRe: Parse out all the "{" + string + "}" occurences? Pin
Guffa5-Jun-09 10:43
Guffa5-Jun-09 10:43 
QuestionTalking to htpasswd.exe Pin
Johan Martensson5-Jun-09 6:17
Johan Martensson5-Jun-09 6:17 
Can anyone see what I'm doing wrong here?
All I want to do is generate a password with htpasswd.exe and it looked
easy enough but it just gets stuck at ReadLine() Confused | :confused:

ProcessStartInfo ps = new ProcessStartInfo();
ps.FileName = Path.Combine(Application.StartupPath, "htpasswd.exe");
ps.Arguments = "-n test";
ps.CreateNoWindow = true;
ps.UseShellExecute = false;
ps.RedirectStandardInput = true;
ps.RedirectStandardOutput = true;
ps.RedirectStandardError = true;

Process proc = new Process();
proc.StartInfo = ps;
proc.Start();

proc.StandardInput.WriteLine("testing");
proc.StandardInput.WriteLine("testing");

string line = proc.StandardOutput.ReadLine();
			
proc.Close();


http://johanmartensson.se - Home of MPEG4Watcher

AnswerRe: Talking to htpasswd.exe Pin
Henry Minute5-Jun-09 10:21
Henry Minute5-Jun-09 10:21 
GeneralRe: Talking to htpasswd.exe Pin
Johan Martensson5-Jun-09 11:39
Johan Martensson5-Jun-09 11:39 
AnswerRe: Talking to htpasswd.exe Pin
DaveyM695-Jun-09 11:19
professionalDaveyM695-Jun-09 11: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.