multiple files are not accessible through argv

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi

When user selects multiple files and opened our application
We are getting only one of the files into argv variable
Could some one help in getting all the file names

Thank
manoj
 
manoj,

Can you show your entry point (the static method that starts the
application), and the command line you are using?
 
static void Main(string[] args)
{
bool mutex;
System.Threading.Mutex m = new System.Threading.Mutex(true,"INAM",out mutex)

if( mutex
Application.Run(new Player(args))
els

if( args.Length > 0

MessageBox.Show("Already INAM running")


GC.KeepAlive(m)


public player(string[] args

if( args.Length > 0

//addthe list of file name

}
 
Back
Top