Results 1 to 4 of 4

Thread: Create folders during installation

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Sep 2001
    Posts
    149

    Create folders during installation

    Hi,

    Is it possible to create some folders during installation of my program such as
    using visual installer ?

    Thanks in advance.

  2. #2
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Create folders during installation

    Don't know anout Visual Installer but if you would be using P&DW then you may add a dummy file and set its destination folder on one of wizard's pages. Another alternative is to create forlder on the first run:
    VB Code:
    1. If Dir(App.Path & "\NewFolder", vDirectory) = "" Then
    2.     MkDir App.Path & "\NewFolder"
    3. End If

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Create folders during installation

    Moved.

    By Visual Installer do you mean the Package and Deployment Wizard?

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Sep 2001
    Posts
    149

    Re: Create folders during installation

    I mean Microsoft Visual Installer 1.1

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