Forum: C++ May 25th, 2007 |
| Replies: 3 Views: 1,794 yes it works. but why doesn't this work
base( int t ): seti( t )
{
} |
Forum: C++ May 25th, 2007 |
| Replies: 3 Views: 1,794 class base
{
private:
int i;
void seti( int i_temp ) // :i(i_temp) ->Initializer List not working
{
i = i_temp;
} |
Forum: C++ May 15th, 2007 |
| Replies: 19 Views: 2,346 how did i b'come a part of this !!! gggggggeeeeeeeeesssssssshhhhhhh. |
Forum: C++ May 14th, 2007 |
| Replies: 19 Views: 2,346 Were you referring to something else mate? |
Forum: C++ May 14th, 2007 |
| Replies: 19 Views: 2,346 you are trying to access a private member with your object in the main function.
cin >> film.i;
is not supposed to work cos its film is trying to access a member( i ) that has been declared... |
Forum: C++ May 12th, 2007 |
| Replies: 4 Views: 1,563 thanks for all your replies guys. I looked into curl but it was application level and I require something a little low level.
I checked out the wrapper for berkeley sockets and i think i'll go... |
Forum: C++ May 8th, 2007 |
| Replies: 4 Views: 1,563 Im looking for a network library for c++ cos Im planning to write a small network application. something along the lines of a port scanner.
I would be interested in knowing which library most... |
Forum: C++ Apr 28th, 2007 |
| Replies: 5 Views: 813 :) oh boy. Finally, i suppose there's a question that's stumped the pro's. just kidding.
But none the less, thanks for politely ;) telling me to look up the answer somewhere else. :) |
Forum: C++ Apr 28th, 2007 |
| Replies: 5 Views: 813 Did i ask this in the wrong forum? I hope my question isn't confusing |
Forum: C++ Apr 27th, 2007 |
| Replies: 5 Views: 813 Im using VC++ express and usually i come across situations where i have to create more than one project within the solution. But the problem is that each time i create a new project inside the... |
Forum: C++ Apr 5th, 2007 |
| Replies: 9 Views: 2,076 Ah, that answers a few questions. Thanks for the link mate. that cleared a few more doubts ! |
Forum: C++ Apr 5th, 2007 |
| Replies: 9 Views: 2,076 The fact that the OS checks in the directory of the .exe is the only thing im sure off. cos up until now, thats the only way i solve the "xxxxx.exe cannot run cos xxxxxx.dll could not be found"... |
Forum: C++ Apr 5th, 2007 |
| Replies: 9 Views: 2,076 how does the OS know that the dll can be found in a particular place, may i ask?. In the IDE settings I explicitly set the extra include directories and extra lib directories. But i see no provision... |
Forum: C++ Apr 4th, 2007 |
| Replies: 9 Views: 2,076 Ah, now i get it. instead of that statement, i added the .lib file in the linker input options of the solution in vc++ express and commented the statement. It built and ran normally.
Now what you... |
Forum: C++ Apr 4th, 2007 |
| Replies: 9 Views: 2,076 i was just going through some source code and came across the directive
#pragma comment( lib, "irrlicht.lib" );
I got mixed and confusing answers when i read about it in the vc++... |