Click here to Skip to main content
15,887,442 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Menu in dialog application, CheckMenuItem Pin
mla15426-Mar-10 7:17
mla15426-Mar-10 7:17 
Questionuse custom icon on an AfxMessageBox Pin
b-rad31126-Mar-10 6:29
b-rad31126-Mar-10 6:29 
AnswerRe: use custom icon on an AfxMessageBox PinPopular
jeron126-Mar-10 7:03
jeron126-Mar-10 7:03 
GeneralRe: use custom icon on an AfxMessageBox Pin
b-rad31126-Mar-10 8:18
b-rad31126-Mar-10 8:18 
QuestionHelp with binary tree(BST) function building. Pin
Member 382253226-Mar-10 4:52
Member 382253226-Mar-10 4:52 
AnswerRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 5:28
David Crow26-Mar-10 5:28 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 6:45
Member 382253226-Mar-10 6:45 
GeneralRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 7:35
David Crow26-Mar-10 7:35 
While not complete, I came up with something like:

// presumably gets called for each node in the tree
void MyCallback( TreeItemType& anItem )
{
    cout << anItem.getKey();
}
  
void main( void )
{
    BinarySearchTree bst;
    TreeItemType key(1);
  
    bst.searchTreeInsert(key);
    bst.preorderTraverse(MyCallback);
}

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"Man who follows car will be exhausted." - Confucius


AnswerRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 8:03
Member 382253226-Mar-10 8:03 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 8:09
Member 382253226-Mar-10 8:09 
GeneralRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 8:11
David Crow26-Mar-10 8:11 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 8:24
Member 382253226-Mar-10 8:24 
QuestionRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 8:36
David Crow26-Mar-10 8:36 
AnswerRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 8:55
Member 382253226-Mar-10 8:55 
AnswerRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 8:58
David Crow26-Mar-10 8:58 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 9:15
Member 382253226-Mar-10 9:15 
GeneralRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 9:29
David Crow26-Mar-10 9:29 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 9:34
Member 382253226-Mar-10 9:34 
GeneralRe: Help with binary tree(BST) function building. Pin
David Crow26-Mar-10 9:36
David Crow26-Mar-10 9:36 
GeneralRe: Help with binary tree(BST) function building. Pin
Member 382253226-Mar-10 9:44
Member 382253226-Mar-10 9:44 
Questionfatal error c1083 in C# Pin
sindhumahe26-Mar-10 4:13
sindhumahe26-Mar-10 4:13 
AnswerRe: fatal error c1083 in C# Pin
Chris Losinger26-Mar-10 4:17
professionalChris Losinger26-Mar-10 4:17 
QuestionButton Caption Pin
shiv@nand26-Mar-10 3:13
shiv@nand26-Mar-10 3:13 
AnswerRe: Button Caption Pin
CPallini26-Mar-10 3:21
mveCPallini26-Mar-10 3:21 
GeneralRe: Button Caption Pin
shiv@nand26-Mar-10 3:31
shiv@nand26-Mar-10 3:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.