Generally, in C# if I need to set the same property for multiple controls, i'll do it like this...
control1.property = control2.property = control.property = false
For instance, all of those properties are "Visible", and I want to set each of those controls to visible = false,
How can this be done in vb? The same code is not working like I thought it would.
The Telerik code converter gave me some output like this
lblPlanogram1.Visible = InlineAssignHelper(lblPlanogram2.Visible, InlineAssignHelper(lblPlanogram3.Visible, InlineAssignHelper(lblPlanogram4.Visible, False)))
is this really the only close way to do this in VB?
Go to the complete details ...