G
Guest
I currently have this code
ME.WD_FULL_HRS.VISIBLE = TRUE
ME.TX_FULL_HRS.VISIBLE = TRUE
ME.ITAG_FULL_HRS.VISIBLE = TRUE
there are many more fields of the same naming convention.
Ok, what I would like to do is:
For Each GRP in ("WD","TX","ITAG")
FHRS = "ME." & GRP & "_FULL_HRS"
EXIT FOR
NEXT
FHRS.VISIBLE = TRUE
Is this possible?
ME.WD_FULL_HRS.VISIBLE = TRUE
ME.TX_FULL_HRS.VISIBLE = TRUE
ME.ITAG_FULL_HRS.VISIBLE = TRUE
there are many more fields of the same naming convention.
Ok, what I would like to do is:
For Each GRP in ("WD","TX","ITAG")
FHRS = "ME." & GRP & "_FULL_HRS"
EXIT FOR
NEXT
FHRS.VISIBLE = TRUE
Is this possible?