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 IamaSherpa 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. gumby451

    Multi-threading in VB

    Check out the following location: http://www.planet-source-code.com/xq/ASP/txtCodeId.14479/lngWId.1/qx/vb/scripts/ShowCode.htm
  2. gumby451

    VB Error Code Generation

    Are you setting an integer value = 10.0? If so, this will generate an error because an integer will hold only "whole" numbers. If you would like to set a variable = 10.0, declare it as a double.
  3. gumby451

    Procedure is too large?

    Place the code you would like to execute in Load in another subroutine, either within the Form, or in a standard module and call it from Form_Load.
  4. gumby451

    Single quote problems

    Try placing conditional statement in the KeyPress event of the text box. If the keyascii value is equal to 39, set it equal to 0. This will throw away the keystroke, thus preventing the user from typing it in. Inside KeyPress event: Select case keyascii Case 39 keyascii = 0 case...

Part and Inventory Search

Back
Top