you could do it this way...
You need to create a menu item (in the example below its mnuSectionName) with an index of 0
you could then recurse the orders checking if they are completed or not, if not then you need to load them into a menu, I did it through a collection:
Code:
Dim intSectCount As Integer
'for each item in the collection
For intSectCount = 1 To colSect.Count
'load it into the menu
Load mnuSectionName(intSectCount)
'set the menu caption
mnuSectionName(intSectCount).Caption = colSect.Item(intSectCount)
Next intSectCount
hth