Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello, I develop password generation software in c#.net2008 and operation system use windows vista and my software easily install in windows vista,windows 7 but problem is that it is not install in windows xp.
show this error---
Error signature:
Event Type : clr20r3 p1:password generation.exe P2:3.1.3.4
P3: 4d947143 p4:password generation p5:3.1.3.4
P6:4d947143 p7:1 p8:e p9:system.io.filenotfoundexception


but if i remove these namespace , it install in windowsxp also:
//using Microsoft.Office.Core;
//using Excel = Microsoft.Office.Interop.Excel;

plese help me how i remove this,error
Posted
Updated 1-Apr-11 3:27am
v2
Comments
luisnike19 1-Apr-11 1:20am    
Why do you post the same question twice? If you want to modify the question you can do it.

Most likely you don't have the Interop assemblies and/or Excel installed on the XP machine. Ensure that Excel is installed and if necessary include the interop assemblies to the installation. Also ensure that necessary version (targeted version) of .Net Framework is installed.
 
Share this answer
 
v2
Comments
situ21 1-Apr-11 1:36am    
yes i checked, it install
situ21 1-Apr-11 1:36am    
these component are intall but comes same problem
The exception is a "File not Found" error, so there's a file missing that your code is trying to load. There's no way to know what that file is without you going back, instrumenting your code to log what it's doing to a file, then trying your app again on the machine in question.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900