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 Mike Lewis 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. brannon

    Return Values from Stored Procedures

    I need to return values from a stored procedure using SQL Server 2000 to a VB6 program. The stored procedure will calculate the values but I can't get it to return the values to the program. Thanks in advance for any help given.
  2. brannon

    Case & If Statements

    LateCharge If None MsgBox (“Accept a payment or charge on the customer’s account.”) Select Case '*** Be sure Its Select Case Case Payment Call CashierModule Case Charge UserOwes + LateCharge End...
  3. brannon

    Changing Report width from Visual Basic 6

    Is there any way to change the report width from 8 1/2 X 11 to 13 X 11 for a dot matrix printer. Please help. Thanx to all.
  4. brannon

    replace a char in a string

    Visual Basic has a built in function to do this. here's an example that may help. Public Function RemoveQuote(sString2Change As String) As String RemoveQuote = Replace(sString2Change, "'", " ") End Function The Replace function is the key. the first parameter is the...
  5. brannon

    Using Crystal Reports in Visual Basic 6.0

    I'm trying to build an SQLString for the crystal report control. I'm new to Crystal Reports. If anyone can help me, I'm desperate. I need to assign the sqlString to the Crystal Report. I've tried this With CrystalReport1 .SQLString = "Select * from MyTableName" End With But...
  6. brannon

    Help ! Want to meet deadline, I need code snippets.

    In response to your second question you may want to add some code to your form_load event. This code opens a recordset with no results. It allows you to retrieve field definitions from the db. You have to set the textbox.tag = to the fieldname so it will know which field it is. Hope it helps...

Part and Inventory Search

Back
Top