Forum: C++ Sep 26th, 2005 |
| Replies: 1 Views: 6,424 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,156 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,973 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,456 can you be more specific? |
Forum: C++ Apr 17th, 2004 |
| Replies: 7 Views: 17,248 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: 28,995 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,773 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: Computer Science Apr 10th, 2004 |
| Replies: 16 Views: 8,070 just go for C and move to C++ then to ASM and finally all other programming languages will seem indifferent.
thats what I did, but im not sure if its the best route. |
Forum: Java Apr 7th, 2004 |
| Replies: 12 Views: 4,987 |
Forum: C++ Apr 6th, 2004 |
| Replies: 8 Views: 29,611 |
Forum: C++ Apr 2nd, 2004 |
| Replies: 4 Views: 47,052 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... |
Forum: C Mar 28th, 2004 |
| Replies: 1 Views: 13,608 is that the psuedo code you want to translate? or is that VB, sorry some times I can't tell the diffrence becuase I'm not well educated about VB.
If its VB you can try posting it in the VB... |
Forum: C Mar 27th, 2004 |
| Replies: 10 Views: 6,990 I disagree C does have nested functions...recursion is pretty nested to me. |