Friends.
I Create an excel sheet Through my code, and then open the created Excel through the MS office, If MS Office is not installed on this particular PC, it means "open with" a dialog box. It should appear to open this "Created Excel worksheet."
What can I do???
You tried
Process.Start("FullFileNamePath");
if an open file with an open window is not displayed, it displays a message to select a program from the list of installed programs.
Use System.Diagnostics when using or
System.Diagnostics.Process.Start("FullFileNamePath");
The information will be useful for beginners like me.