私は現在 VS.NET でプログラムをコーディングしています。プログラムを開いたときにファイルをアクティブ化/実行したいと考えています。外部プログラム (Pager Decoder) からのコマンド ライン引数を処理するプログラムが既にありますが、開いたときにファイルを自動的に開いて実行するプログラム。
誰かが私を助けることができるこれを行う方法について何か考えを持っていますか?
私がこれまでに持っているコード:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(String[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1(args));
}
}
}