[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.setup

release version does not work in other pcs ... debug version works.. help?

Nick Valeontis

12/23/2006 4:11:00 PM

Hi,

I have just finished an app in framework v2.0.

I have been working on a debug version which worked pretty much okay. I have
also built my app in release mode. The program still works okay in my pc

However, whenever I try to execute it in another pc I get: "The XXX has
encountered a problem and needs to close"

If I publish it and try to run the setup.exe, I get the same error.


Does anyone have any suggestion of how I should try to find what is going
on?



-Nick


2 Answers

Nick Valeontis

12/23/2006 4:41:00 PM

0

Is this okay:


<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGroup, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="NickValeontis.TheRobot.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"
/>
</sectionGroup>
</configSections>
<applicationSettings>
<NickValeontis.TheRobot.Properties.Settings>
<setting name="FitPadding" serializeAs="String">
<value>20</value>
</setting>
<setting name="ScaleStep" serializeAs="String">
<value>0.2</value>
</setting>
<setting name="GraphicsScale" serializeAs="String">
<value>1</value>
</setting>
<setting name="HistoryColor" serializeAs="String">
<value>Green</value>
</setting>
<setting name="SolutionColor" serializeAs="String">
<value>Red</value>
</setting>
</NickValeontis.TheRobot.Properties.Settings>
</applicationSettings>
</configuration>


I don't know if it has anything to do with my problem but I get many warning
errors in this file:

"cound not find schema information for the element | attribute X"

....


Nick Valeontis

12/23/2006 9:42:00 PM

0

I found the line that causes the problem so I am reposting to the proper
newsgroup