Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Don't like INNO Setup
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Installation et configuration
Versions des environnements
Visual FoxPro:
VFP 9 SP2
Database:
Visual FoxPro
Divers
Thread ID:
01474660
Message ID:
01474736
Vues:
63
>All I wanted was a simple Installation program like we used to have in VFP 6.0. INNO cannot do the simple stuff; it is a program that works, if you go their way, but if you want to do something different, it seems unwieldable, like a heavy sword you just cannot lift.
>
>Is InstallShield Express that comes with VFP 9.0 any easier to use? I have version 5.
>
>All I want to do, while in Development mode, is to copy all of the files from the C:\Dev\CMW folder onto any machine and be done with it. All of the subfolders contain all of the necessary development files, i.e., classes, forms, graphics, report, etc., along with the EXE file, config.fpw. INNO just isn't made to handle the simple stuff, or else my brain is far too simple (and that could be too!). (I wonder if all that fluoride I've been drinking has dummed me down?)

Hi Cecil,

have you been using ISTool, or just plain Inno?

I just used ISTool's wizard to generate a script to just copy files from a folder and here it is:
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "My Development Files"
#define MyAppVerName "My Program 1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{550EDD5B-A767-41C8-A3ED-5E7ACFFA38DC}
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName=c:\Dev\CMW\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: english; MessagesFile: compiler:Default.isl

[Files]
Source: C:\Development\VFP9\VMP2005\BU\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
HTH
Frank.

Frank Cazabon
Samaan Systems Ltd.
www.samaansystems.com
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform