I have made a program using Microsoft Visual C++ 6.0 using MFC app, and ive decided to "enhance" it...

Its basically a "blog" or "journal" in a way... I was wondering whats the easiest way if someone clicks on "save" (i have it set to save to folder as (date).txt and inside is the entry... But i was thinking about using a Tree for the folder to easily access all journal entries... What would be the easiest way to access all the journal entries added using the same program?

Possibilities;
1) OnSave, saves file to folder and somehow automatically save title to a ComboBox that'll allow you to click on it and allow entry to be viewed...
2) Tree, having tree set to that folder only allowing user to click on file wanted and having it open entry like combobox idea...

Im queued... I dont know how to use the Tree control, all tutorials ive found are based around C:\\ (a tree for full harddrive with 2 classes and millions of files)... Is there a way to make it so that a user can view past save's in a combo box and being allowed to click on date to view entry?