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 Shaun E 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. d1e1r0r3

    Processing a recordset

    Declare an extra variable - Dim TotalCost as Currency. Within the while loop use - ItemId = Order.Fields(ItemId) Units = Order.Fields(Units) TotalCost = TotalCost + <however you arrive at the cost of each unit multiplied by volume ordered per itemID> Order.MoveNext Wend Set...
  2. d1e1r0r3

    Adding controls to Data Report Designer in code

    How is this possible to add controls to the sections and controls parts of a data report in code without having added the controls to the form initially? If you are designing a report linked to a recordset that will return data based on the parameters entered, it does not make sense to have set...

Part and Inventory Search

Back
Top