VB Net problem

06/02/2015 14:39 tomeczkoo#1
Hello Guys I'm try to compile the 4Story Sources in VB Net 2003 but I got Error:x
The last time I had no problem with build sources until today :x

[Only registered and activated users can see links. Click Here To Register...]
06/02/2015 14:51 stotterer09#2
this is c++ my friend not vb.net wtf??
06/02/2015 14:58 tomeczkoo#3
Quote:
Originally Posted by stotterer09 View Post
this is c++ my friend not vb.net wtf??
Stotterer but I Use the Visual Net 2003 to compile the source :O
06/02/2015 14:58 Sicarium#4
the file New.h ..... Is missing

Doesn't matter it s c++... Hahahaha
06/02/2015 15:04 [DEV] Tiger#5
Added include and lib
06/02/2015 20:22 glossypvp#6
As the others said, it's C++, not VB.NET.
Maybe you've mistunderstood it. .NET is the framework that Visual Studio is 2003 based on.
Visual Basic .NET (commonly called as vb.net) is a programming language based on the .NET framework.

Your source code has a semantic error at this part:
[Only registered and activated users can see links. Click Here To Register...]
"#ifndef" stands for "if not defined", Whoever wrote "new.h", why would he/she include if it does not exists / _INC_NEW is not defined?
I'm assuming that the author of this source wanted to include "new.h" when _INC_NEW is defined.

So, the soulution:
modify "#ifndef" to #ifdef. After that, it will include "new.h" if _INC_NEW is defined.
Or simply delete that part of the source.

Ps. you should learn the basics of programming/C++ before doing stuff related to 4story.
06/02/2015 23:06 tomeczkoo#7
Quote:
Originally Posted by glossypvp View Post
As the others said, it's C++, not VB.NET.
Maybe you've mistunderstood it. .NET is the framework that Visual Studio is 2003 based on.
Visual Basic .NET (commonly called as vb.net) is a programming language based on the .NET framework.

Your source code has a semantic error at this part:
[Only registered and activated users can see links. Click Here To Register...]
"#ifndef" stands for "if not defined", Whoever wrote "new.h", why would he/she include if it does not exists / _INC_NEW is not defined?
I'm assuming that the author of this source wanted to include "new.h" when _INC_NEW is defined.

So, the soulution:
modify "#ifndef" to #ifdef. After that, it will include "new.h" if _INC_NEW is defined.
Or simply delete that part of the source.

Ps. you should learn the basics of programming/C++ before doing stuff related to 4story.
Ty Glossy ;)