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

    How to Dim As Database in Access 2000

    Remember that in Access 2000 ADO is the default data access model and not DAO. Thus, the reason you do not see Database as an option is because it isn't one in ADO (you are probably looking at the Connection object). However, if you still wish to work with DAO instead of ADO, then go to Tools...
  2. dtomyn

    Mailing label wizzard

    This is from Microsoft... there used to be a mdb download that had this at MS's site, but I can't seem to find it anymore. Anyway, put this in a module:<br> <br> Dim intLabelBlanks As Integer<br> Dim intLabelCopies As Integer<br> Dim intBlankCount As Integer<br> Dim intCopyCount...
  3. dtomyn

    Standard windows dialogue box for selecting folders?

    OK, I have just went browsing and see that you already got the answer you were looking for on this one previously.
  4. dtomyn

    Standard windows dialogue box for selecting folders?

    I am not sure if you are still waiting for a reply on this one, but just in case you are, here is the API for Selecting a folder:<br> <br> Private Type BROWSEINFO<br> hOwner As Long<br> pidlRoot As Long<br> pszDisplayName As String<br> lpszTitle As String<br> ulFlags As Long<br> lpfn...
  5. dtomyn

    Code to link front end to back end

    Go to Microsoft's sample database &quot;Solutions.mdb&quot; (installed under your Samples directory when Microsoft Office was installed) and look at the module &quot;modRefreshTableLinks&quot; -- it is all there.

Part and Inventory Search

Back
Top