Need Help creating folders using user's inputs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Patricius Luciani
    New Member
    • Jun 2006
    • 6

    Need Help creating folders using user's inputs

    Hi, I'm a very amateur programmer, needs lotsa help here.

    This is the basic structure of what my folders will be like

    ------------------------My Documents------------------------------
    I I I I
    Apple Orange Banana Lemon
    I I I I
    Numeral Numeral Numeral Numeral

    How do I create a UserForm so that I will create folders based on the numeral input by the user?
  • sashi
    Recognized Expert Top Contributor
    • Jun 2006
    • 1749

    #2
    Hi there,

    i would suggest you using FSO (File System Objects) when it comes to dealing with directory and files.. good luck my fren.. :) do a little research on the usage of FSO..

    Comment

    • Ali Rizwan
      Banned
      Contributor
      • Aug 2007
      • 931

      #3
      Originally posted by Patricius Luciani
      Hi, I'm a very amateur programmer, needs lotsa help here.

      This is the basic structure of what my folders will be like

      ------------------------My Documents------------------------------
      I I I I
      Apple Orange Banana Lemon
      I I I I
      Numeral Numeral Numeral Numeral

      How do I create a UserForm so that I will create folders based on the numeral input by the user?
      Hello buddy
      There is a simple programe use it for creating folders and files


      First add a refrence from Project>Refrenc es>Microsoft scripting runtime
      Now do this thing

      dim fso as new filesystemobjec t

      private sub ()

      fso.createfolde r("Destinatio n" + text1.text) (your folder name in text1)

      end sub

      Comment

      Working...