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

    Automate switch of web page ODBC recordsource

    try using ADO and connection string.You can easily automate task of changing connection string and it will be more easy
  2. satinkatiyar

    Making a preview

    You can use WEbbrowser control and using Navigate function you can navigate to file containing HTML code
  3. satinkatiyar

    Tables to ComboBox

    Try using ActiveX Data Objects (ADO) You can get information about enumerating tables also by seeing the code of visual data manger which comes with Visual studio The visual data manger's code is installed along with Visual studio in samples directory
  4. satinkatiyar

    Using custom designs for forms?

    you can use following API's SetWindowRgn The SetWindowRgn function sets the window region of a window. The system does not display any portion of a window that lies outside of the window region The region parameter to above API can be specified using CreatePolygonRgn this function creates...
  5. satinkatiyar

    send email through Visual Basic?

    you can also use following code which uses CDO (Collaborating Data Objects) Dim iMsg as New CDO.Message Dim iConf as New CDO.Configuration Dim Flds as ADODB.Fields Set Flds = iConf.Fields With Flds .Item(cdoSendUsingMethod) = cdoSendUsingPort .Item(cdoSMTPServerName) =...

Part and Inventory Search

Back
Top