Link to home
Start Free TrialLog in
Avatar of amadei2000
amadei2000

asked on

Saving dynamic menus between runs

I've created dynamic menus that display the path and filenames of selected .wav and .avi files when users wish to add their own files to my application.  This I've done via the menu editor and some coding in VB6.0.  Yet, I want the application to save these menus and display them each time the application is run, much like newly opened files are remembered and displayed in Microsoft Word.  How do I accomplish this?
ASKER CERTIFIED SOLUTION
Avatar of AzraSound
AzraSound
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
to use this add this to a menu:

Captions:

&File
.....&Open
.....-
.....RecentFile1
.....RecentFile2
.....RecentFile3
.....RecentFile4 mnuFile

Names:


mnuFileOpen
mnuRecentFileSep
mnuRecentFile  (Index 1)
mnuRecentFile  (Index 2)
mnuRecentFile  (Index 3)
mnuRecentFile  (Index 4)


Avatar of amadei2000
amadei2000

ASKER

It didn't occur to me to access the Recent Files stored in the registry....  I am new to VB and programming in general... Your guidance was far more than I had expected!  Your code is well documented and easy to follow...  Thank you so much for your insight!  Perhaps some day I will also be able to help a lost soul find his/her way through the VB jungle....  
I am sure you will   =)
glad I could be of service...take care