Click here to Skip to main content
15,918,889 members
Home / Discussions / C#
   

C#

 
QuestionIs there free code for plot 3D figures? Pin
Seraph_summer3-Feb-08 21:22
Seraph_summer3-Feb-08 21:22 
AnswerRe: Is there free code for plot 3D figures? Pin
Mircea Puiu3-Feb-08 23:56
Mircea Puiu3-Feb-08 23:56 
Questionhow to read filename? Pin
samidhas3-Feb-08 21:15
samidhas3-Feb-08 21:15 
GeneralRe: how to read filename? Pin
N a v a n e e t h3-Feb-08 21:41
N a v a n e e t h3-Feb-08 21:41 
GeneralRe: how to read filename? Pin
samidhas3-Feb-08 22:41
samidhas3-Feb-08 22:41 
QuestionGiving privilege certificate to an app??? Pin
Shivaprasad3-Feb-08 20:11
Shivaprasad3-Feb-08 20:11 
QuestionPassing parameters while debugging?? Pin
Muammar©3-Feb-08 19:55
Muammar©3-Feb-08 19:55 
AnswerRe: Passing parameters while debugging?? Pin
Martin#3-Feb-08 21:46
Martin#3-Feb-08 21:46 
Hello Muammar!

I'm not shure if I understand your question, or better what you think you don't understand.

Pathing arguments:
using System.Diagnostics;
 
ProcessStartInfo PSItest= new ProcessStartInfo();
PSItest.FileName = @"???";
PSItest.Arguments = "oneargument";
//or
PSItest.Arguments = "firstargument secondargument";
using(Process Ptest = Process.Start(PSItest))
{
}


Getting arguments:
public static void Main(string[] Args)
{
    string arg1 = "";
    string arg2 = "";

    if (Args.Length > 0)
    {
        arg1 = Args[0];
    }
    if (Args.Length > 1)
    {
        arg2 = Args[1];
    }
}


All the best,

Martin

GeneralRe: Passing parameters while debugging?? Pin
Muammar©4-Feb-08 2:32
Muammar©4-Feb-08 2:32 
GeneralRe: Passing parameters while debugging?? Pin
N a v a n e e t h3-Feb-08 22:31
N a v a n e e t h3-Feb-08 22:31 
GeneralRe: Passing parameters while debugging?? Pin
Muammar©4-Feb-08 2:33
Muammar©4-Feb-08 2:33 
AnswerRe: Passing parameters while debugging?? Pin
Spacix One4-Feb-08 2:58
Spacix One4-Feb-08 2:58 
GeneralRe: Passing parameters while debugging?? Pin
Muammar©4-Feb-08 20:00
Muammar©4-Feb-08 20:00 
Questionhow to pass a value from an event to on button click? Pin
samidhas3-Feb-08 19:46
samidhas3-Feb-08 19:46 
GeneralRe: how to pass a value from an event to on button click? Pin
N a v a n e e t h3-Feb-08 19:50
N a v a n e e t h3-Feb-08 19:50 
GeneralRe: how to pass a value from an event to on button click? Pin
samidhas3-Feb-08 20:15
samidhas3-Feb-08 20:15 
GeneralRe: how to pass a value from an event to on button click? Pin
N a v a n e e t h3-Feb-08 20:27
N a v a n e e t h3-Feb-08 20:27 
GeneralRe: how to pass a value from an event to on button click? Pin
samidhas3-Feb-08 21:04
samidhas3-Feb-08 21:04 
GeneralInject into PE file with csharp. Pin
hdv2123-Feb-08 19:32
hdv2123-Feb-08 19:32 
QuestionCan we use Balloon tool tip in vs2003 ?? Pin
peter rankel3-Feb-08 19:28
peter rankel3-Feb-08 19:28 
AnswerRe: Can we use Balloon tool tip in vs2003 ?? Pin
Corinna John3-Feb-08 21:16
Corinna John3-Feb-08 21:16 
AnswerRe: Can we use Balloon tool tip in vs2003 ?? Pin
Thomas Stockwell4-Feb-08 8:25
professionalThomas Stockwell4-Feb-08 8:25 
QuestionTimeSpan?? Pin
xString3-Feb-08 19:28
xString3-Feb-08 19:28 
AnswerRe: TimeSpan?? Pin
Martin#3-Feb-08 21:49
Martin#3-Feb-08 21:49 
Generalgenerate crystal report from datagridview [modified] Pin
Maddie from Dartford3-Feb-08 18:48
Maddie from Dartford3-Feb-08 18:48 

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.