Guest User

Untitled

a guest
Feb 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Public Sub AllForms_BottomButtons_Appearence()
  2. For Each OpenForms As Form In My.Application.OpenForms
  3. For Each FlowLayoutPanel As Control In OpenForms.Controls
  4. If FlowLayoutPanel.Tag.ToString.Contains("Something") Then
  5. For Each Label As Label In FlowLayoutPanel.Controls
  6. If Label.Tag.ToString.Contains("Something") Then
  7. 'Some Code Here...
  8. End If
  9. Next
  10. End If
  11. Next
  12. Next
  13. End Sub
Add Comment
Please, Sign In to add comment