Posts
 
Reputation
Joined
Last Seen
Ranked #490
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
54% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
2
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
6 Commented Posts
~75.3K People Reached
Favorite Tags
Member Avatar for Good Bye

[QUOTE=Good Bye;595841]it'll take 6-12 months to make a simple bot in c++? wow.[/QUOTE] What, you think it's a slice of cake? :icon_rolleyes:

Member Avatar for Nihat_1
0
3K
Member Avatar for inkcoder

Yep. And experiment - if you have an idea you want to implement, start a new file and see if it works.

Member Avatar for Gabriel_9
1
48K
Member Avatar for DarckHalf

You can write sprite-based RPGs in Javascript, one guy even made a (slow) [url=http://www.nihilogic.dk/labs/chess/]3D chess game[/url] in JS. C++ is the preferred language for games, mainly for it's speed and efficiency.

Member Avatar for roax206
0
711
Member Avatar for goldeagle2005

[QUOTE=MidiMagic;450392]I mean your idea of automatically logging in to a website from a web page on click of a link is insecure. Google would not notice that as being an insecurity. It will find the page and list it. You can't have a "hidden" page on your website that only …

Member Avatar for schofield
0
2K
Member Avatar for Dark_Omen

Keep in mind you can still use .NET on Linux/Mac/Windows with [url=http://www.mono-project.com/Main_Page]Mono[/url]. ;)

Member Avatar for kvprajapati
-1
4K
Member Avatar for vedmack
Member Avatar for zoner7

When I first setup SDL I had to go through the includes and remove start_code.h / end_code.h from the includes. Bah.

Member Avatar for thriek
0
264
Member Avatar for angelsherin

Well, lose the CString. [code=c++] System::String value = "RegNo"; System::String key = "Dept"; System::String /* assuming */ getValue = ReturnValue(value, key);[/code]

Member Avatar for amit.mcanitw
0
180
Member Avatar for joshmo
Member Avatar for hacker9801

I was thinking about making an avatar system (like Gaia Online; I've tried befor but it's hard). Can anybody help me with one? I'm gonna make an open source site like Gaia... I can't do it by myself, though.

Member Avatar for jmvazq
0
598
Member Avatar for Syakoban

From what I read, he's probably looking for something like [url]http://www.dynamicdrive.com/dynamicindex17/ajaxcontent.htm[/url]

Member Avatar for aformoftruth
0
325
Member Avatar for Dani

Like everyone else, I hate people that don't use code tags. Seriously, is it that hard?

Member Avatar for William Hemsworth
0
987
Member Avatar for aecsant

[code=c++]class Foo { public: void SubFoo() { cout << "something"; } }; int main() { Foo foo; foo.SubFoo(); }[/code] edit: read the other part :x you could do something like [code=c++]class F { public: F() { cout << "something" << endl; } } class Foo : public F { }[/code] …

Member Avatar for Prabakar
0
246
Member Avatar for TheBeast32

you want to read it? easy. *ahem* use an ifstream object on the file, read it into an event_info structure (like [icode]struct event_info { int something;string event;int x;int y; }[/icode]) and simulate the events (mouse_event for mup/mdown, SetCursorPos() for move) *walks away now*

Member Avatar for TheBeast32
0
325
Member Avatar for Shadoninja

system("start http://www.google.com"); or system("C:\\Program Files\\Mozilla Firefox\\firefox.exe");

Member Avatar for mengqing
0
113
Member Avatar for Alex Edwards

>And Java is powerful and so is Assembly. The point is Assembler and C++ are the most efficient, when written right. >You can create languages from most any language. They are just mechanisms to convert text instructions to machine code. But sometimes languages throw in useless ASM/binary code that makes …

Member Avatar for sciwizeh
0
277
Member Avatar for jack1234

you [icode]delete[] m_Contents;[/icode] since it was allocated onto the heap not str.

Member Avatar for ArkM
0
193
Member Avatar for CoolGamer48

Look at TinyXML or something, it's nicely done. now that makes me want to code an xml parser... perhaps with XPath support...

Member Avatar for dougy83
0
109
Member Avatar for chickenlord500

Use code tags and we might help. And you should really work on your code formatting. That looks terrible. ;)

Member Avatar for Sky Diploma
0
155
Member Avatar for Fasola
Member Avatar for hacker9801
0
1K
Member Avatar for linux0id

>change into: wrong. It's not constant because it has expressions that change. Thus you need dynamic memory (allocated with [icode]new[/icode]) or a type that's managed automatically (like Narue said, [icode]std::vector[/icode] for example). Right, Narue? *still needs to learn [i]alot[/i]*

Member Avatar for linux0id
0
141
Member Avatar for angelsherin

[url=http://msdn.microsoft.akadns.net/en-us/library/ms724895(VS.85).aspx]RegOpen()[/url], [url=http://msdn.microsoft.com/en-us/library/ms724923(VS.85).aspx]RegSetValueEx()[/url], [url=http://msdn.microsoft.com/en-us/library/ms724844(VS.85).aspx]RegCreateKeyEx()[/url], [url=http://msdn.microsoft.akadns.net/en-us/library/ms724837(VS.85).aspx]RegClose()[/url], etc. [url=http://msdn.microsoft.com/en-us/library/aa363634(VS.85).aspx]MS Example[/url]

Member Avatar for Ancient Dragon
0
93
Member Avatar for Black Magic

On Windows you can just put the website on the command line and it will open in the default browser, i.e. [icode]system("http://www.google.com");[/icode]

Member Avatar for Ancient Dragon
0
102
Member Avatar for balla4eva33

Post the error... >#ifndef MAIN_H >#define MAIN_H you put your #endif in main, it should go at the bottom of your header.

Member Avatar for CoolGamer48
0
151
Member Avatar for titaniumdecoy

I guess not - it still has garbage. Did this test. [code=c++]#include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int *nums = new int[10]; for(int i=0;i<10;++i) cout << i << ": " << nums[i] << endl; delete [] nums; system("PAUSE"); return EXIT_SUCCESS; } [/code] but …

Member Avatar for Narue
0
103
Member Avatar for The Dude
Member Avatar for CoolGamer48

And that's why you must use binary mode for FTP when transferring files from *nix to windows/mac/dos, otherwise the binary data will be corrupted by CRLFs. (and I will never understand that. :))

Member Avatar for hacker9801
0
446
Member Avatar for chetan1989
Member Avatar for FTProtocol
Member Avatar for hacker9801
0
212
Member Avatar for anuizath2007

... you're not going to finish it unless someone does it for you. but nobody will.

Member Avatar for anuizath2007
0
287