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 SkipVought 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. blackguard

    Adding values in textboxes

    txtTax.Text = (txtMatTot.Text) + (txtPadPriceTotal.Text) The "+" symbol is the old concatenation symbol (now replaced by "&"). Try this to add the contents of the 2 text boxes - the Val command converts to numbers: txtTax.Text = Val(txtMatTot.Text) + Val(txtPadPriceTotal.Text)
  2. blackguard

    Memory leak in spoolsv.exe

    This may not be the proper forum, but I'd be curious to know if anyone has experienced spoolsv.exe (Win 2000 spooler) growing in size until it uses up all available memory. We've updated and verified the print driver (HP 845C), and we still see the leak - the temporary fix is to reboot the...
  3. blackguard

    CR 8 sometimes produces report with only one line

    We are distributing a simple VB program that contains multiple reports using a single CR control. Occasionally, a report will print only the first line. The affected reports seem to be the ones in which we are creating records in a DAO table immediately before launching the report that uses that...

Part and Inventory Search

Back
Top