Click here to Skip to main content
15,914,322 members
Home / Discussions / C#
   

C#

 
AnswerRe: oop materials Pin
bobsugar22231-Jan-07 21:53
bobsugar22231-Jan-07 21:53 
Questionpainting a part of image Pin
samreengr831-Jan-07 21:14
samreengr831-Jan-07 21:14 
AnswerRe: painting a part of image Pin
bobsugar22231-Jan-07 21:41
bobsugar22231-Jan-07 21:41 
AnswerRe: painting a part of image Pin
Christian Graus31-Jan-07 22:42
protectorChristian Graus31-Jan-07 22:42 
Questionfile transfer between webserver and a local server Pin
kalyan_241631-Jan-07 20:56
kalyan_241631-Jan-07 20:56 
QuestionRetrieve data from a Dataset into an string array - how?? Pin
ComCoderCsharp31-Jan-07 20:41
ComCoderCsharp31-Jan-07 20:41 
AnswerRe: Retrieve data from a Dataset into an string array - how?? Pin
Mircea Puiu31-Jan-07 20:58
Mircea Puiu31-Jan-07 20:58 
QuestionOpenFileDialog dlg = new OpenFileDialog(); Pin
Eyungwah31-Jan-07 20:32
Eyungwah31-Jan-07 20:32 
Hello all:

I have this code below to display whatever the Browse is selected. For example, if user select C:\cmd.exe. I would like to add the "*" after backward slash. So it would be C:\cmd.exe\*.

OpenFileDialog dlg = new OpenFileDialog();
if (dlg.ShowDialog() == DialogResult.OK)
{
tb_batchparams.Text = dlg.FileName;

}

System.Diagnostics.Process proc1;
System.Diagnostics.ProcessStartInfo procInfo = new System.Diagnostics.ProcessStartInfo();
procInfo.WorkingDirectory = "C:\\dcm\\bin";
procInfo.FileName = "scu.exe";
procInfo.Arguments = tb_batchparams.Text // how do I include "\*" so it would be C:\dcm\bin\scu.exe\* instead.

proc1 = System.Diagnostics.Process.Start(procInfo);

Thanks,
eyungwah

AnswerRe: OpenFileDialog dlg = new OpenFileDialog(); Pin
Mircea Puiu31-Jan-07 20:52
Mircea Puiu31-Jan-07 20:52 
QuestionUser Control Pin
Biswajit Ghosh31-Jan-07 20:25
Biswajit Ghosh31-Jan-07 20:25 
AnswerRe: User Control Pin
Christian Graus31-Jan-07 20:26
protectorChristian Graus31-Jan-07 20:26 
GeneralRe: User Control Pin
Biswajit Ghosh31-Jan-07 20:29
Biswajit Ghosh31-Jan-07 20:29 
GeneralRe: User Control Pin
bobsugar22231-Jan-07 22:01
bobsugar22231-Jan-07 22:01 
GeneralRe: User Control Pin
Biswajit Ghosh1-Feb-07 19:49
Biswajit Ghosh1-Feb-07 19:49 
GeneralRe: User Control Pin
Biswajit Ghosh1-Feb-07 19:51
Biswajit Ghosh1-Feb-07 19:51 
GeneralRe: User Control Pin
Christian Graus1-Feb-07 20:28
protectorChristian Graus1-Feb-07 20:28 
AnswerRe: User Control Pin
aSarafian1-Feb-07 2:15
aSarafian1-Feb-07 2:15 
GeneralRe: User Control Pin
Biswajit Ghosh1-Feb-07 19:48
Biswajit Ghosh1-Feb-07 19:48 
GeneralRe: User Control Pin
aSarafian1-Feb-07 21:16
aSarafian1-Feb-07 21:16 
AnswerRe: User Control Pin
Luc Pattyn1-Feb-07 7:16
sitebuilderLuc Pattyn1-Feb-07 7:16 
GeneralRe: User Control Pin
Biswajit Ghosh1-Feb-07 19:47
Biswajit Ghosh1-Feb-07 19:47 
GeneralRe: User Control Pin
Luc Pattyn1-Feb-07 23:41
sitebuilderLuc Pattyn1-Feb-07 23:41 
QuestionHow to use WM_COPYDATA to send a struct to another process? Pin
huheng_0_031-Jan-07 20:14
huheng_0_031-Jan-07 20:14 
AnswerRe: How to use WM_COPYDATA to send a struct to another process? Pin
Luc Pattyn1-Feb-07 7:38
sitebuilderLuc Pattyn1-Feb-07 7:38 
GeneralRe: How to use WM_COPYDATA to send a struct to another process? Pin
huheng_0_01-Feb-07 17:56
huheng_0_01-Feb-07 17:56 

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.