Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 258159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:09:26+00:00 2026-05-11T22:09:26+00:00

I have a program that passes command-line arguments to an associated file (i.e. associated

  • 0

I have a program that passes command-line arguments to an associated file (i.e. associated file extension) of an executable. The executable never receives the arguments. However, if I start the executable directly and pass it both the path to the associated file and the arguments, then it receives both the file path and the arguments.

  • Operating System: Windows XP
  • Programming Language: C#

I am starting the associated file using:

System.Diagnostics.Process.Start(filepath, arguments)

Thanks in advance for all assistance.

-EDIT

Basically, I have a programming language interpreter that needs to receive command-line arguments passed to it by a C# program.

If I start a code file using the C# program, the interpreter will start, but not receive the command-line arguments that were passed to the code file by the C# program.

So there are a total of three files:

  1. the interpreter
  2. the code file
  3. the program trying to start the code file as though it were a program

Also, starting the interpreter directly is not an option, because it is not located at the same file path on every computer.

I hope this is clearer, but I cannot post the source code do to legal restrictions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T22:09:26+00:00Added an answer on May 11, 2026 at 10:09 pm

    You could try (untested) changing the file association (on the advanced pane) to include %2 %3 etc in the arguments (normally it just includes %1) – however, this involves changes at the client, and (more importantly) the entire idea of passing arguments to a document presumes that you have the same viewer (i.e. that the arguments are sensible).

    IMO, a better option is to explicitly launch the exe, passing the doc (and the other others) as arguments.

    Example:

    receiver exe (just shows the command arguments received):

    static class Program {
        [System.STAThread]
        static void Main(string[] args) {
            System.Windows.Forms.MessageBox.Show(string.Join("|", args));
        }
    }
    

    Then: created a “foo.flibble” file, right-click/open and associate with my receiver; went into file associations, “flibble”, advanced, “open”, edit, and added %2 %3 %4

    Then in a separate exe:

    Process.Start(@"c:\foo.flibble", "test of args");
    

    Which shows:

    c:\foo.flibble|test|of|args
    

    So this has now passed the extra arguments to the exe via the document. But a lot of client configuration!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a program which takes various command line arguments. For the sake of
I have a string with possible command line arguments (using an Read-Eval-Print-Loop program) and
I have written a program that reads in a File object (really an XML
I have a program that spits out both standard error and standard out, and
I have a program that creates a Windows user account using the NetUserAdd() API
I have a program that uses the mt19937 random number generator from boost::random. I
I have a program that spits out an Excel workbook in Excel 2003 XML
I have a program that monitors debug messages and I have tried using a
I have a program that will calculate the minimal area taken by fitting rectangles
I have a program that runs osql.exe from microsoft sql server tools directory and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.