Forum: C++ Dec 20th, 2003 |
| Replies: 8 Views: 6,706 Let me get this straight:
You want a program that will take a picture, and output a new picture with frames?
If so, it should be fairly easy, I think. Just make a bitmap with a little space on... |
Forum: C++ Oct 14th, 2003 |
| Replies: 6 Views: 7,347 You only make something const(constant) if it's , well, constant. If you're going to change anything about it, or any sorts of funky errors pop up, you're better off not const-ing it.
I personally... |