Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~983 People Reached
About Me

student

Favorite Tags
c++ x 11
c x 2
Member Avatar for andrax

I want to add a hit counter to my webpage and wasn't sure if there's really a difference between all the free sites out there. Google returned a whole bunch of free sites to do the job that look good. Does anyone have experience with using an external site to …

Member Avatar for ebookfinder
0
166
Member Avatar for andrax

I know this is probably an unbelievably simple error somewhere, but I can't see it. I keep getting "undefined reference to Machine::Machine()" and all of Machine's other functions. main.cpp [code] #include "machine.h" using namespace std; int main(int argc, char** argv) { Machine* m = new Machine(); m->reset(); m->run(); delete m; …

Member Avatar for Salem
0
91
Member Avatar for Walkers

hi, OVer the last few days, I've bee having serious issues trying to check input from the user and making sure its numeric, I recently found this function like many others but I cannot get it to work. [code] #include <cstdlib> #include <iostream> using namespace std; bool IsNumeric(const char *p) …

Member Avatar for iamthwee
0
145
Member Avatar for andrax

Hi, I was wondering if anyone knew of a good memory leak checker (like valgrind's memcheck) for c++ win32 apps.

Member Avatar for andrax
0
197
Member Avatar for andrax

I'm writing a win32 app that re-paints the client area everytime the user clicks inside of it. Unfortunately after about 25 or 26 clicks the window gets painted white, but the black grid lines still appear. The WM_PAINT case goes through a for loop and asks another class what should …

Member Avatar for andrax
0
209
Member Avatar for xicestorm

I am working with a dateType class and need to make a function to show next day and the previous day. I have my function set using const keyword so that it can't be changed by users, but now I can't increase my day. help??? [code] [COLOR=#0000ff]int[/COLOR][COLOR=#000000] dateType::nextDay() [/COLOR][COLOR=#0000ff]const [/COLOR]{ …

Member Avatar for andrax
0
84
Member Avatar for andrax

I'm writting a program where I need the coordinates of the mouse when it's clicked inside the client area. For some reason, the coordinates seem to be in base 21, maybe higher (I've seen the character k). I'm not sure why this is happening. Here's the mouse section of the …

Member Avatar for WolfPack
0
91