Forum: C++ Sep 26th, 2005 |
| Replies: 1 Views: 6,477 Use PostMessage() . It will add your message to the the recieving windows message que.
(SendMessage is to be used only within the same thread).
Also, check out SendThreadMessage considering... |
Forum: C++ Feb 28th, 2005 |
| Replies: 4 Views: 3,178 If you want to reed a book here's an ebook "Thinking in C++ Second Edition"
http://www.planetpdf.com/developer/article.asp?ContentID=6634
here's a simple tutorial to get you started
... |
Forum: C++ Sep 6th, 2004 |
| Replies: 5 Views: 2,991 I'll help you, but not for free :( . I'm very busy ( I own my own Software Development Company), just give me an email b*o*u*n*t*y*x*@*b*o*u*n*t*y*.*n*e*t (remove the stars) |
Forum: C++ May 27th, 2004 |
| Replies: 2 Views: 3,484 can you be more specific? |
Forum: C++ Apr 17th, 2004 |
| Replies: 7 Views: 17,323 you missing a ';' and a '}', id need to knwo more about ur program to help u with ur other error. |
Forum: C++ Apr 13th, 2004 |
| Replies: 6 Views: 29,210 Well im not sure if I could write the program for you (sounds like hw ;)) but since you mention "draw" i can defiently help you "draw" up the program hehe.
First thing that comes to mind when you... |
Forum: C++ Apr 13th, 2004 |
| Replies: 9 Views: 8,911 if you wanted to go beyond the call of duty you could do one of these:
#include <iostream.h>
#include <stdlib.h>
void main()
{
int MAX;
cout<<"Enter a number to count by two to: ";
... |
Forum: C++ Apr 6th, 2004 |
| Replies: 8 Views: 29,678 |
Forum: C++ Apr 2nd, 2004 |
| Replies: 4 Views: 47,492 this is where i first learned to make a GUI (which btw is not taught in most C/C++ classes becuase it is not standard, and is OS dependant)
I prefer Win32 API over MFC, but I reccomend you try... |