Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~467 People Reached
Favorite Tags
Member Avatar for Serg_zone

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> …

Member Avatar for prathul.prabhakar
0
271
Member Avatar for Serg_zone

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 …

0
63
Member Avatar for Serg_zone

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] …

Member Avatar for AnonCSAddict
0
133