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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LJD

  1. LJD

    I want to open Explore with VBA code in Excel- POSSIBLE??

    You can use Dim OpenExplore OpenExplore = Shell("C:\Windows\Explore.exe") AppActivate = OpenExplore
  2. LJD

    delete

    This code would work Dim DB as Database Dim rstRecordset as Recordset Set DB = DBEngine(0)(0) Set rstRecordset = DB.Openrecordset(<<Your Recordset>>, _ DBOpenDynaset) Do until rstRecordset.EOF .delete .movenext Loop Simple but don't know if this answers your question
  3. LJD

    Registering Active X controls in VBA

    How do i register an active x control in VBA ive managed to add the reference to the objects but not the Active X control

Part and Inventory Search

Back
Top