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 strongm 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. Brettt3

    VPN for Macintosh

    I have been using a product called TunnelBuilder from Network Telesystems (NTS) for several years now. I've turned serveral people onto it and they are all happy with it. There is no OSX version. Looks like they were bought by another company recently and have limited support. But here's...
  2. Brettt3

    process combo box input before lookup

    Rick, thank you. It works exactly "as advertised". I did add code to validate the new data in order to prevent the drop-down effect. It was pretty straight forward. Thanks again.
  3. Brettt3

    process combo box input before lookup

    Is it possible to manipulate the data that is typed into the text portion of a combo box before the combo box tries to check it against the list part? What I want to do is check to see if the data entered was numeric and if it is I want to fill with leading zeroes. It is a 12 char text field...
  4. Brettt3

    Query for price stickers, need to expand based on number

    I ended up doing it with a report and putting code in the OnFormat for the Detail: Option Explicit Dim LabelsPrinted As Integer Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Dim LabelsNeeded As Integer If Me.InvoiceQty > 0 Then LabelsNeeded = (Me.InvoiceQty * 1.05)...
  5. Brettt3

    Query for price stickers, need to expand based on number

    I have an inventory table with ITEMID, DESCRIPTION, ITEMCOUNT and ITEMPRICE. I want to generate labels for each item, but I need multiple labels based on the value in ITEMCOUNT so I can put one label on each item on the shelf. Any ideas on how to formulate a query that will produce multiple...

Part and Inventory Search

Back
Top