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. thbinh

    Sending email

    Option Explicit Private Enum SMTP_State MAIL_CONNECT MAIL_HELO MAIL_FROM MAIL_RCPTTO MAIL_DATA MAIL_DOT MAIL_QUIT End Enum Private Mail_Signal As SMTP_State...
  2. thbinh

    Exporting Data from an Access Database

    Exporting Data from an Access Database TextBox: txtFileName txtDatabaseName CommandButton: cmdExport Label: Label1 Option Explicit ' Export the file. Private Sub cmdExport_Click() Dim fnum As Integer Dim file_name As String Dim database_name As String Dim db As Database Dim rs...
  3. thbinh

    HOW TO CLOSE ALL FORMS IN MDIform

    Ban nen dung code sau: Private Sub mnuExit_Click() Dim iFormCount As Integer For iFormCount = Forms.Count - 1 To 0 Step -1 Unload Forms(iFormCount) Next iFormCount End Sub Thanh Binh - Viet Nam

Part and Inventory Search

Back
Top