Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: yurko
  • Order by date
  1. yurko

    Lop through controls

    kjv1611, You are right, just checked and it does pick up labels. Probably it was something else.
  2. yurko

    Lop through controls

    Sorry, mistake in my previous post: instead of While i > 0 should be While i >= 0
  3. yurko

    Lop through controls

    I've had this problem, 'For Each' doesn't pick up labels. Use 'While... Wend' instead: Dim i As Integer i = me.Controls.Count - 1 While i > 0 If me.Controls(i).Tag = "OrderPic" Then me.Controls(i).Visible = False End If i = i - 1 Wend Use control property ControlType = 100 to...

Part and Inventory Search

Back
Top