No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
I'm actually astonished at the amount of time i spent trying to fix this and got absolutely nowhere in the end. I have the following app.config file i'm trying to read: [CODE] <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="BattleCity.Configuration" type="BattleCity.Configuration.GameConfiguration, BattleCity"/> </configSections> <BattleCity.Configuration> <environment> <add blockType="Test1"/> <add blockType="Test2"/> </environment> … | |
I'm having a bit a of a problem writing to a spreadsheet using OLEDB. I can insert fine, but all the number i insert come up as strings in the spreadsheet. I tried converting to a double using Cdbl() however the number still shows up as a string. Here is … | |
Hey guys, i'm have a tough time working the following two problems. I need to find out the theta notation or big O for the number of times x=x+1 is executed [code] i = 1 while (i < n) { i = i^2; x = x + 1; } [/code] … |
The End.