Hi,
I'm using an embed resources in my c# application
string sPath = System.IO.Path.GetTempFileName();
System.IO.File.WriteAllBytes(sPath, Properties.Resources.test)
workbook = app.Workbooks.Open(sPath,missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing);
It worked fine until today,It throw me some bad exception:
System.NullReferenceException: Object reference not set to an instance of an object at ......
It is only on 2 windows xp proffesional edition installations, both root and user accounts (user account is very limited there, because of admin policy).
Till today it worked on several xp and vista installation, without any problems.
What could be a cause of this problem?
Thank you for any ideas.