Need help with projectx source.

09/27/2011 23:26 Deekaron#1
Hello everyone i've download all files for projectx source and also i putted the right files in C:/ Driver and when i start the projectx console there comes a error like this>>> [Only registered and activated users can see links. Click Here To Register...] <<<



And also i'm using windows 7 64bit
09/28/2011 03:59 killersub#2
we can't help you if we can't even understand the language of the error.
09/28/2011 07:25 BaussHacker#3
Quote:
Originally Posted by killersub View Post
we can't help you if we can't even understand the language of the error.
"The input string was not in a correct format".

Example on your error:

Code:
double somevalue = double.Parse("a123.5");//a is not numeric.
09/28/2011 11:51 Deekaron#4
So any idea how to fix it?
09/28/2011 14:36 Lateralus#5
Quote:
Originally Posted by Deekaron View Post
So any idea how to fix it?
Make sure that the target that you're parsing is the right variable type. But really, the problem isn't in the function itself. Use the call stack and trace back to what called the function - looks like one of your ini files has a non double type value somewhere.
09/29/2011 16:58 killersub#6
like Bauss said you can't add Alphabetic letters when parsing.