Results 1 to 2 of 2

Thread: Removing Folders from Start Menu

  1. #1

    Thread Starter
    Hyperactive Member DKCK's Avatar
    Join Date
    Dec 2000
    Location
    United States
    Posts
    329

    Smile

    I've got a problem with removing group folders from the Start Menu. I can remove links with a call to fRemoveShellLink. I used OSfCreateShellGroup to create the folders. Does any one know how to remove the folders with a function in VB5STKIT.DLL?

    Private Declare Function OSfCreateShellGroup Lib "VB5STKIT.DLL" _ Alias "fCreateShellFolder" (ByVal pstrDirName As String) As Long



    Does anyone know how to remove the folder?

    Thanks

  2. #2
    Guest
    Use the Kill and RmDir statements to delete all files in a folder and then delete the folder.

    Code:
    Kill "C:\MyFolder\*.*"
    RmDir "C:\MyFolder"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width