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

  • Users: Razvi
  • Order by date
  1. Razvi

    VB Trick

    Another one is... F7 will take you to code window if you are in design view and SHIFT + F7 will take you to the design view if you are in code window.
  2. Razvi

    How To Make Cancel Button Work In InputBox

    Buddy008, If you thought there was no way to tell the difference if the user pressed Cancel or OK on an InputBox, you're wrong. You see, if the user presses cancel, vbNullString is returned. However if they press OK, the empty string ("") is sent back. But in Visual Basic...
  3. Razvi

    Mask EdBox

    Hi dvannoy Could you post the code. Thanks, Razvi
  4. Razvi

    How to count a number of records in Ms Access using Visual Basic 6?

    The reason why the record count = -1 is that we need to specify the cursor location. In case ADO is being used, you can specify the cursor location as ConnectionObject.CursorLocation = CursorLocationEnum.adUseClient By default, the cursor location is CursorLocationEnum.adUseServer And once...
  5. Razvi

    Stored Procedure Call

    Hi rushtome There is one abnormality I noticed in your code. 'Param2' has variable lengths (1 and 3) when ComboAdHocIT.Text = "No" and ComboAdHocIT.Text = "Yes" I guess the correct code should read like, If ComboAdHocIT.Text = "No" Then .Parameters.Append...
  6. Razvi

    Textboxes, how do I limit entries

    A better way to limit users to enter only numbers would be to use Microsoft Masked Edit control instead of the text box. Include this control in your project and pull up CUSTOM properties for this control. Set the mask to ##(this would limit the users from entering only 2 digit numbers)...

Part and Inventory Search

Back
Top