Hi everyone,
My Requirement is as explained below.
In a MDI Form I'm having a Menu Control Array named mnu_Masters. If I click a Menu Control Array Item , the corresponding
Form should be showed. If I have a large number of Array Items, the Code will increase b'cos , I ' ve to put Select Case
Statement for all Menu Items as shown below.

Private Sub mnu_Masters_Click(Index As Integer)
Dim pStr_Caption As String
pStr_Caption = mnu_Masters(Index).Caption
Select Case LCase(pStr_Caption)
Case "mill master"
frm_MasterMill.Show
Case "mode of trans master"
frm_ModeofTrans.Show
End Select
End Sub

I 've stored the Menu Captions in a Menu Control Array and their correponding Form Names in a Table. Is it possible to show a form using the name stored in Table so that I don't have to put Case Statement for all Menu Items? Thanks for any help.

Regards
Sujatha