Click here to Skip to main content
15,908,674 members
Home / Discussions / C#
   

C#

 
Questionhaving user thread update listViewItem.BackColor Pin
yccheok6-Mar-07 13:46
yccheok6-Mar-07 13:46 
Questionhow to increase the height of the Row in ListView? Pin
Khoramdin6-Mar-07 13:04
Khoramdin6-Mar-07 13:04 
AnswerRe: how to increase the height of the Row in ListView? Pin
Ravi Bhavnani6-Mar-07 17:11
professionalRavi Bhavnani6-Mar-07 17:11 
Questionaccessing a file on Local network Pin
wildpankaj6-Mar-07 12:37
wildpankaj6-Mar-07 12:37 
AnswerRe: accessing a file on Local network Pin
Ravi Bhavnani6-Mar-07 17:17
professionalRavi Bhavnani6-Mar-07 17:17 
AnswerRe: accessing a file on Local network Pin
Keshav V. Kamat6-Mar-07 17:25
Keshav V. Kamat6-Mar-07 17:25 
AnswerRe: accessing a file on Local network Pin
Keshav V. Kamat6-Mar-07 17:32
Keshav V. Kamat6-Mar-07 17:32 
Questionsystem.diagnostics.process help Pin
JMichael24686-Mar-07 11:57
JMichael24686-Mar-07 11:57 
I am attempting to execute a Surround SCM CLI Command using system.diagnostics.process. The cruisecontrol command to be exact. If I execute the command in command window it works perfectly. If I place and run the command from a batch file it works perfectly. When I execute it using the system.diagnostics.process it does not run, at least not completely. At the end of the command I use “> filename.txt” to dump the results to a text file. Again, it runs great in a command window and from a batch file but not in the C# app. Any ideas?????


<br />
<br />
System.Diagnostics.Process process = new System.Diagnostics.Process();<br />
process.StartInfo.FileName = @"c:\mypath\seapine\surround scm\sscm.exe";<br />
process.StartInfo.Arguments = " cc -d" + timecode + " -r -bMyBranch –pMy/Path -x- -z127.0.0.1:1234 -yUN:PW > FileName.txt";<br />
process.StartInfo.UseShellExecute = true;<br />
process.StartInfo.RedirectStandardOutput = true;<br />
process.StartInfo.RedirectStandardError = true;<br />
process.StartInfo.CreateNoWindow = true;<br />
process.Start();<br />
process.WaitForExit();<br />
<br />

AnswerRe: system.diagnostics.process help Pin
Dave Kreskowiak6-Mar-07 17:18
mveDave Kreskowiak6-Mar-07 17:18 
GeneralRe: system.diagnostics.process help Pin
JMichael24687-Mar-07 2:55
JMichael24687-Mar-07 2:55 
GeneralRe: system.diagnostics.process help Pin
Dave Kreskowiak7-Mar-07 12:44
mveDave Kreskowiak7-Mar-07 12:44 
GeneralRe: system.diagnostics.process help Pin
JMichael24688-Mar-07 3:48
JMichael24688-Mar-07 3:48 
AnswerRe: system.diagnostics.process help Pin
Ravi Bhavnani6-Mar-07 17:20
professionalRavi Bhavnani6-Mar-07 17:20 
GeneralRe: system.diagnostics.process help Pin
JMichael24687-Mar-07 4:10
JMichael24687-Mar-07 4:10 
QuestionImage in DataGridView Pin
Nooie6-Mar-07 11:21
Nooie6-Mar-07 11:21 
QuestionRetrieving Pin
hadad6-Mar-07 11:20
hadad6-Mar-07 11:20 
AnswerRe: Retrieving Pin
Guffa6-Mar-07 13:35
Guffa6-Mar-07 13:35 
Questiondraw finest dot on the screen..... Pin
samreengr86-Mar-07 11:09
samreengr86-Mar-07 11:09 
AnswerPixels are the finest dots Pin
Ennis Ray Lynch, Jr.6-Mar-07 12:54
Ennis Ray Lynch, Jr.6-Mar-07 12:54 
GeneralRe: Pixels are the finest dots Pin
samreengr87-Mar-07 23:58
samreengr87-Mar-07 23:58 
GeneralRe: Pixels are the finest dots Pin
Ennis Ray Lynch, Jr.8-Mar-07 12:59
Ennis Ray Lynch, Jr.8-Mar-07 12:59 
QuestionMemory Management, and NET 2.0 upgrading Pin
sjdevo3gsr6-Mar-07 10:48
sjdevo3gsr6-Mar-07 10:48 
AnswerRe: Memory Management, and NET 2.0 upgrading Pin
Ennis Ray Lynch, Jr.6-Mar-07 12:58
Ennis Ray Lynch, Jr.6-Mar-07 12:58 
GeneralRe: Memory Management, and NET 2.0 upgrading Pin
sjdevo3gsr7-Mar-07 2:37
sjdevo3gsr7-Mar-07 2:37 
GeneralRe: Memory Management, and NET 2.0 upgrading Pin
Ennis Ray Lynch, Jr.7-Mar-07 13:33
Ennis Ray Lynch, Jr.7-Mar-07 13:33 

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.