Thread
:
using variable for a control name
View Single Post
#
1
Posted to microsoft.public.excel.programming
Mark Kubicki
external usenet poster
Posts: 89
using variable for a control name
can a variable be used as a control name?
Dim i As Integer
Dim cnDayLabel As Control 'or should this be as a String?
For i = 1 To 7
cnDayLabel = "DayLabel" & i
cnDayLabel.Visible = False
Next i
Reply With Quote
Mark Kubicki
View Public Profile
Find all posts by Mark Kubicki