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: takishi
  • Order by date
  1. takishi

    How to open a Cristal report in VB?

    you must install VB and Crystal Report in your pc. in your application, add the crystal report component in your toolbar. here's the code... Private Sub Command1_Click() CrystalReport1.filename = app.path + "\report.rpt" crystalreport1.action = 1 End Sub hope this helps. -takishi
  2. takishi

    Saving records

    you said that you save one record at a time. just use a loop in saving all the items... -takishi
  3. takishi

    Can't set focus to a text box !!!!

    hey! i think you should put this code: 'txtCustLastName.setFocus' under the Form_Activate Private Sub Form_Activate() txtCustLastName.setFocus End Sub hope this helps... -takishi

Part and Inventory Search

Back
Top