| Recent Answers |
 |
 |
2008-10-03 C++ - Data in memory going to zero.: Hi Jim, Is that an 8MHz crystal attached to the 6809 or are you running at 8MHz using e.g. a 1 or 2MHz crystal? I ask because 8MHz crystals were out of spec with 6809's of the past. I've used the 68S08...
|
2008-10-01 C++ - Pointers to pointers - Mulitple Indirection: Pointers and references are interchangeable. If your argument is *x, you modify the parameter (&variable) by assigning to *x. If you pass in a reference &x, you modify the parameter variable by assigning...
|
2008-09-30 C++ - MFC Programming: Are you convinced it's possible to do this? I think it's standard behavior for one window that is on top of of another window to be covering all parts it overlaps. Are you drawing the border manually?...
|
2008-09-30 C++ - lexicographical_compare: The name of the lexicographic order stems from the order given to words in a dictionary: a sequence of letters (that is, a word) a1a2 ... ak appears in a dictionary before a sequence...
|
2008-09-29 C++ - C++ help my program wont run: Ok Lee, some points: 1. Before while(currval>0) you need to set currval to something. If it's 0 (not likely but it could be) the while won't run. Your compiler should have warned about using...
|