c# - Unable to create a manifest resource name error in Visual Studio 2008 -


i've created form1.cs in windows forms application, , there's file form1.resx. whenever try run application, i'm getting following error:

unable create manifest resource name "....\gg\form1.resx". not find file 'c:\documents , settings\administrator\desktop\gg\form1.cs'.

could please tell me reason, , how can overcome problem?

your .csproj corrupted. need manually edit it. form, there must 3 entries:

<compile include="myform.cs">   <subtype>form</subtype> </compile>  <compile include="myform.designer.cs">   <dependentupon>myform.cs</dependentupon> </compile>  <embeddedresource include="myform.resx">   <dependentupon>myform.cs</dependentupon>   <subtype>designer</subtype> </embeddedresource> 

Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -