Forum: C++ Dec 4th, 2007 |
| Replies: 11 Views: 3,164 You can also let 'c','p' & 't' fall through to 'g' |
Forum: C++ Sep 17th, 2007 |
| Replies: 4 Views: 1,052 int TxtSize = GetWindowTextLenth (hwndEditBox) + 1;
char *Entry = new char [TxtSize];
GetWindowText (hwndEditBox, Entry, TxtSize);
MessageBox (NULL, Entry, "", MB_OK | MB_ICONINFORMATION)
delete... |
Forum: C++ Sep 16th, 2007 |
| Replies: 2 Views: 649 When creating an "EDIT" window there are several flags associated all begining with ES_. The one you want to use is ES_AUTOHSCROLL in dwStyle. |
Forum: C++ Sep 15th, 2007 |
| Replies: 2 Views: 902 Assuming your using CreateWindowEx, change the value of y (vertical position of window) before the next window is created. |
Forum: C++ Aug 20th, 2007 |
| Replies: 11 Views: 4,825 If you don't return a value to the operating system, then whatever happens to be in EAX at the time will probably be returned and this may cause undesirable results. That is why void main () is a... |