Home > Microsoft .Net Development Tips > ARCHIVE: Tips & Tricks > Directory printing from Windows
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ARCHIVE: TIPS & TRICKS

Directory printing from Windows


Steve Krupp
01.02.2001
Rating: -2.54- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Directory printing from Windows

Reader Steve Krupp lets us in on a simple little macro that will print a directory listing from Windows.

I discovered that there is no way to print the directory of a CD-ROM or any folder directly from windows. You could do a screen print but if your folder has too many files they won't all appear on one page. This simple macro will print every file name without reordering them in any way and tell you how many files you have.

Code: Sub DIRECTORYLIST()

Pname = InputBox("Please enter path where file names are to be scanned", "ENTER PATH")


       ChangeFileOpenDirectory Pname

' get the name of all the files in the dir one at a time and run the routine
    
  FName = Dir(Pname & "*.*")
 
   ' Loop structure

    Do While FName <> ""
       NOFDOCS = NOFDOCS + 1
        
        SendKeys (FName)
        SendKeys "{ENTER}", True
    
    FName = Dir()
    Loop
    MsgBox (NOFDOCS), , "Number of Files Scanned"
End Sub

Sub DIRECTORYLISTKEY()
'
' DIRECTORYLISTKEY Macro
' Shortcut key Alt D
    Application.Run MacroName:="DIRECTORYLIST"
End Sub

------------------------------------------------------

Steve Krupp is Supervisor of the Training Dept. at Samsung Telecommunications America.

Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
ARCHIVE: Tips & Tricks
SearchVB wants your tips
Find out what VS.NET modules are installed
Retrieving icons from an EXE-file
Toggling Boolean values
VS.NET multiple tabbed windows
Set the value of a DataField in code behind
Easy grid design
Open using last Visual Studio.NET layout
Save development time by using inherited forms
Reusing code in VS.NET

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts