Results 1 to 7 of 7

Thread: Making Folders (Resolved)

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2005
    Posts
    300

    Resolved Making Folders (Resolved)

    ok, one of my mates has requested this.

    Would it be possible to load a list of words and for the program to make a folder called everyname on the list ?? In the same path as where the program is.
    Last edited by Ricky1; Apr 8th, 2005 at 09:24 AM.
    Im Learning !!!!

  2. #2
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Making Folders

    That one is not going to get answered, as it could be construed as harmful.
    Nobody would want that, and it would be a pita to get rid of.

    Tell your friend to ask his own questions, so he can get banned.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2005
    Posts
    300

    Re: Making Folders

    y is it harmful ? he wants it so he can load a list of all the albums, games and movies that he has download, (which is a hell of alot) and make separate folders for them. Save a hell of alot of time.
    Im Learning !!!!

  4. #4
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Making Folders

    Are you sure that it is on the up-and-up?

  5. #5
    New Member
    Join Date
    Apr 2005
    Posts
    2

    Re: Making Folders

    Heres the mate here.....

    Harmful???

    "Could" be construed as harmful ??

    Well if you didn't know, anything can be harmful... And as you say COULD, that doesn't mean WILL.

    All hes asking is how you make a folder in VB, nothing special is it?


    So email microsofts security department and tell them how making a folder can be harmful, if youre lucky they might even remove folders altogether in the next version of windows and stop all these security risks.

    Afterall, microsoft are always looking for feedback


  6. #6
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Making Folders

    Just don't load a dictionary into a listbox.

    VB Code:
    1. Option Explicit
    2.  
    3. Private Sub Form_Load()
    4.   Dim x As Integer
    5.   List1.AddItem "test"  ' You can add your own folder names here
    6.   List1.AddItem "lost"
    7.   List1.AddItem "trust" ' or load them from a file
    8.   ChDir App.Path ' "c:\temp"  ' to test
    9.   For x = 0 To List1.ListCount - 1
    10.     MkDir List1.List(x)
    11.   Next x
    12.   MsgBox "Done!"
    13. Unload Me
    14. End Sub

    Use it in good health.

  7. #7
    New Member
    Join Date
    Apr 2005
    Posts
    2

    Re: Making Folders (Resolved)

    well thanks for helping out.

    I wont use it harmfully

    Even if i did, would it be your fault?

    Ill have to start learning to program myself so i dont need to get rick to do it all



    daz

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