TheSwamp

Code Red => VB(A) => Topic started by: Guest on August 22, 2006, 02:28:52 PM

Title: Unload partial menu...
Post by: Guest 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?
Title: Re: Unload partial menu...
Post by: David Hall on August 22, 2006, 02:33:59 PM
Try this
Code: [Select]
Application.MenuGroups.Item("menuname").Unload
Title: Re: Unload partial menu...
Post by: Guest on August 22, 2006, 02:58:54 PM
Thank you!