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

    API FUNCTIONS IN VB

    One other good source I know of is a book by Dan Appleman. It is called "The Visual Basic Programmers Guide to the WIN 32 API". Hope This Helps, Marty
  2. martyl

    ADO recordset returned

    Hi Mark, The easiest way I know of is to check the .EOF(End of File) property of the recordset object. For example: Dim RSTest as ADODB.Recordset Set RSTest = New ADODB.Recordset RSTest.Open "SELECT * FROM Table", MyConnection If Not RSTest.EOF Then 'Process the recordset...

Part and Inventory Search

Back
Top