NewestCOServer Has stopped working...

03/25/2012 17:30 Galyrion#1
Ok ! here...
1. I have Windows 7 64Bit
2. I changed libeay32.dll file
Source is in C:\

And when i debug in Microsoft Visual Studio, it says:

------------------------------------------
return double.Parse(IVS.Value);

Input string was not in a correct format.
------------------------------------------

Here is the whole code:
Code:
        public double ReadDouble(string Section, string Key)
        {
            string section = "[" + Section + "]";
            IniSectionStructure ISS = null;
            Sections.TryGetValue(section, out ISS);
            if (ISS != null)
            {
                IniValueStructure IVS = null;
                ISS.Variables.TryGetValue(Key, out IVS);
                if (IVS != null)
                    return double.Parse(IVS.Value);
            }
            return 0;
        }
Here is a screenshot of the whole screen:
[Only registered and activated users can see links. Click Here To Register...]
Picture Link: [Only registered and activated users can see links. Click Here To Register...]
03/25/2012 17:32 Korvacs#2
Looks like you've fiddled with some config file for it somewhere, and now it cant interpret what you've changed.
03/25/2012 17:38 Galyrion#3
Quote:
Originally Posted by Korvacs View Post
Looks like you've fiddled with some config file for it somewhere, and now it cant interpret what you've changed.
What do you mean?... I've only changed config.ini in the oldCODB to my hamachi ip and root password!

Should i go to windows 7 32bit instead? :)
I have a CD's for Windows 7 32 bit and a cd for 64bit ^^!
03/26/2012 10:26 turk55#4
So you want to reinstall your OS for a source, while your computer can deal 64 bit sources and 32 bit sources ?
03/26/2012 22:54 LiquidCoGaming#5
Quote:
Originally Posted by turk55 View Post
So you want to reinstall your OS for a source, while your computer can deal 64 bit sources and 32 bit sources ?
No, now what i want to, is to delete this thread... I have it working now!
08/13/2012 17:04 kennytheman#6
What about telling others HOW you did get it to work?