Simple program exceptions on all other win7 platforms
-
so, I'm making an ini editor for this game that has no advanced options. I found an INI reader/writer here: http://www.mentalis.org/soft/class.qpx?id=6[^] When I debug or run the program on my laptop (where I have windows 7 and vb2010 installed) it works fine. I dual boot to winxp works fine there too I have two other win7 computers and JIT debugger comes up on both saying:' Error message: An item with the same key has already been added I see references to the ini class inside the details. Cause it uses dictionaries. But I get no exception on xp or the dev win7 install. also note: I changed the project down to .NET 2.0 after I made the project. Does this have anything to do with it? please help
-
so, I'm making an ini editor for this game that has no advanced options. I found an INI reader/writer here: http://www.mentalis.org/soft/class.qpx?id=6[^] When I debug or run the program on my laptop (where I have windows 7 and vb2010 installed) it works fine. I dual boot to winxp works fine there too I have two other win7 computers and JIT debugger comes up on both saying:' Error message: An item with the same key has already been added I see references to the ini class inside the details. Cause it uses dictionaries. But I get no exception on xp or the dev win7 install. also note: I changed the project down to .NET 2.0 after I made the project. Does this have anything to do with it? please help
Then the ini files you read on those other computers are not correct, e.g. a duplicated section. In order to prevent the JIT debugger rom being invoked, use some try..catch in the function where you call your ini reader.