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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BrianRig

  1. BrianRig

    Reference Control using variable

    Thanks for the tips...I think I've got it. I belieive I can use the following syntax to get the results I need using the (Controls) array: Dim i as Integer For i = 1 to 50 Forms!MyForms.Controls("Control" & i) = "MyValue" Next i
  2. BrianRig

    Reference Control using variable

    I was wondering how to reference and update control on a form from a module without explicitly knowning the control name. For example, if I have a bunch of controls: Forms!myForm!Control1 Forms!myForm!Control2 ... How could I loop through them to set their values using a for/next loop? This...
  3. BrianRig

    How to remove last character of a string?

    ...or perhaps strNewString = Left(strOldString,Len(strOldString)-1)

Part and Inventory Search

Back
Top