Forum: Web Developers' Lounge Dec 27th, 2007 |
| Replies: 7 Views: 924 Which free web/hit counter? 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... |
Forum: C++ Oct 14th, 2007 |
| Replies: 6 Views: 495 |
Forum: C++ Sep 6th, 2007 |
| Replies: 6 Views: 495 Re: dumb class scoping error Doesn't get to compile at all. The error keeps it from getting that far.
Makefile
OBJS = main.o machine.o user.o
EXENAME = sucrose
C = g++
COPTS = -g -Wall
LINK = g++
LINKOPTS = -o $(EXENAME) |
Forum: C++ Sep 6th, 2007 |
| Replies: 6 Views: 495 dumb class scoping error 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... |
Forum: C++ Dec 20th, 2006 |
| Replies: 6 Views: 3,074 |
Forum: C++ Dec 20th, 2006 |
| Replies: 5 Views: 1,518 |
Forum: C++ Dec 19th, 2006 |
| Replies: 5 Views: 1,518 Re: win32 memcheck? Sorry, I was looking for something a little simpler and little more free :P |
Forum: C++ Dec 19th, 2006 |
| Replies: 5 Views: 1,518 win32 memcheck? Hi, I was wondering if anyone knew of a good memory leak checker (like valgrind's memcheck) for c++ win32 apps. |
Forum: C++ Dec 18th, 2006 |
| Replies: 7 Views: 2,038 Re: win32 window painting fails Yeah, that tutorial's a great start. I use Charles Petzold's book more now though. It's amazing. Since my apps are all small I stick to win32. I use java for web apps and when I want something... |
Forum: C++ Dec 17th, 2006 |
| Replies: 7 Views: 2,038 Re: win32 window painting fails Yeah that was it, thanks. I needed to delete each brush I was creating. I'd never needed 400 brushes to be created per frame before. Thanks. |
Forum: C++ Dec 12th, 2006 |
| Replies: 7 Views: 2,038 Re: win32 window painting fails I'm not getting the device context, I'm using BeginPaint and EndPaint. I tried using GetDC and ReleaseDC, but instead of messing up after 25 clicks, it messed up immediately. Thanks for the... |
Forum: C++ Dec 6th, 2006 |
| Replies: 7 Views: 2,038 win32 window painting fails 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... |
Forum: C Oct 11th, 2006 |
| Replies: 2 Views: 1,070 Re: dateType class + increment day function Functions can't be edited by users anyway. When a function is const, it means that function can't change anything outside of it, which in your case is dDay. Get rid of the const and it'll work. |
Forum: C Feb 10th, 2006 |
| Replies: 1 Views: 2,463 win32 api mouse coordinates weird 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... |