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 Mike Lewis 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: biba
  • Order by date
  1. biba

    Creating Control during runtime

    I forgot to tell you that you have to make space when you load them. Dim leftPos As Integer, j As Integer Dim buttonWidth As Integer 'Get the size and position of the first command button leftPos = cmdBtn(0).Left 'this is the one you created at ' design time...
  2. biba

    Creating Control during runtime

    to create a control array called cmdBtn (you have to have one control button on the form at design time) do this: Dim j As Integer For j = 1 to 9 Load cmdBtn(j) Next j I hope this helps. Billie

Part and Inventory Search

Back
Top