View Single Post
 
Old 01-31-2018, 05:43 AM
gmaxey gmaxey is offline Windows 7 32bit Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

This seems to show all in the array:

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey, http://gregmaxey.com/word_tips.html, 1/31/2018
Dim Dialogs(2) As Object
Dim lngIndex As Long
  Set Dialogs(0) = New UserForm1
  Set Dialogs(1) = New UserForm2
  Set Dialogs(2) = New UserForm3
  For lngIndex = 0 To UBound(Dialogs)
    Dialogs(lngIndex).Show
  Next
lbl_Exit:
  Exit Sub
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote