T
Tom Minori
Dear readers,
I have the following simple code wich throws an exception ("Project annot open the file").
using System;
using Microsoft.Office.Interop.MSProject;
namespace HackingTest
{
class Program
{
static void Main(string[] args)
{
Application app = null;
object oMiss = System.Reflection.Missing.Value;
String fileName = args[0];
app = new Application();
app.FileOpen(fileName, true, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, PjPoolOpen.pjDoNotOpenPool);
}
I have no idea. Do you have any idea?
I have the following simple code wich throws an exception ("Project annot open the file").
using System;
using Microsoft.Office.Interop.MSProject;
namespace HackingTest
{
class Program
{
static void Main(string[] args)
{
Application app = null;
object oMiss = System.Reflection.Missing.Value;
String fileName = args[0];
app = new Application();
app.FileOpen(fileName, true, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, oMiss, PjPoolOpen.pjDoNotOpenPool);
}
I have no idea. Do you have any idea?