Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim MyString as string, i as integer
for i = 1 to 2
MyString = "Number " & CInt(i)
next
dim MyString as string, i as integer
for i = 1 to 2
MyString = "Number " & i
next
Dim oVBA As Object
With Application.VBE.ActiveVBProject
For Each oVBA In .VBComponents
If oVBA.Type = vbext_ct_msform Then _
.VBComponents.Remove .VBComponents(oVBA.Name)
Next
End With
Dim oVBA As Object
With Application.VBE.ActiveVBProject
For Each oVBA In .VBComponents
Select Case oVBA.Name
Case "UserForm21", "UserForm22", "UserForm23"
.VBComponents.Remove .VBComponents(oVBA.Name)
End Select
Next
End With