Author Topic: Unload partial menu...  (Read 1941 times)

0 Members and 1 Guest are viewing this topic.

Guest

  • Guest
Unload partial menu...
« on: August 22, 2006, 02:28:52 PM »
I've got a partial menu file (*.mns) that I want to automatically unload and load up a different one instead.  How do I do this??

There's a MenuGroups.Load function, but nothing for Unload.  What's the secret to this?

David Hall

  • Automatic Duh Generator
  • King Gator
  • Posts: 4075
Re: Unload partial menu...
« Reply #1 on: August 22, 2006, 02:33:59 PM »
Try this
Code: [Select]
Application.MenuGroups.Item("menuname").Unload
Everyone has a photographic memory, Some just don't have film.
They say money can't buy happiness, but it can buy Bacon and that's a close second.
Sometimes the question is more important than the answer. (Thanks Kerry for reminding me)

Guest

  • Guest
Re: Unload partial menu...
« Reply #2 on: August 22, 2006, 02:58:54 PM »
Thank you!