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: *

  1. dpark48

    Search a string value for specific character and extract

    How about Public Function Find_B(strIN As String) As String Dim intI As Integer For intI = 1 To Len(strIN) If UCase(Mid(strIN, intI, 1)) = "B" Then Exit For Next intI Find_B = Mid(strIN, intI + 1, 7) End Function
  2. dpark48

    How do I reference a form's "Description" property?

    The Containers collection! Yes, that works. Thanks, David
  3. dpark48

    How do I reference a form's "Description" property?

    I would like to use VBA to access the form descriptions for an Access 2003 database; however, I cannot locate a "description" property for a form object. How does one set a reference to the form description property? Thank you.

Part and Inventory Search

Back
Top