RE: Inno setup question

2014-05-02 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2014-05-02: I want the app to install on the user's local hard drive, but not necessarily C: drive. Some partition of course so what is the syntax I need to add to my line below??? DefaultDirName=MyCompany\MyApp Thanks,

RE: Inno setup question

2014-05-02 Thread mbsoftwaresolutions
On 2014-05-02 17:49, Tracy Pearson wrote: To put in on the system drive DefaultDirName={sd}\MyCompany\MyApp Thanks, Tracy! ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free

RE: Inno Setup question

2006-07-26 Thread Rodney Dixon
That did it for me. Thanks a lot. May your hair never go on sabbatical. :) Regards Rodney -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Thayer Sent: Tuesday, July 25, 2006 5:37 PM To: [EMAIL PROTECTED] Subject: Re: Inno Setup question

RE: Inno Setup question

2006-07-25 Thread Rodney Dixon
I'm very new to Inno so I haven't used Scripts yet. I compile this into my install script and I get Unknown identifier OldExe. Is OldExe a variable that holds the path to the old executable? I have another question. My current package uses VFP9, if I apply SP1 and rebuild will the script

Re: Inno Setup question

2006-07-25 Thread Dave Thayer
On 7/25/06, Rodney Dixon [EMAIL PROTECTED] wrote: I'm very new to Inno so I haven't used Scripts yet. I compile this into my install script and I get Unknown identifier OldExe. Is OldExe a variable that holds the path to the old executable? D'oh! Here's the constants used in this snippet.:

RE: Inno Setup question

2006-07-25 Thread Rodney Dixon
Thanks man, just what the doctor ordered :) Regards Rodney -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Thayer Sent: Tuesday, July 25, 2006 12:44 PM To: [EMAIL PROTECTED] Subject: Re: Inno Setup question On 7/25/06, Rodney Dixon [EMAIL

RE: Inno Setup question

2006-07-25 Thread Rodney Dixon
Why do you do the shl (which I assume is shift left operation)? Regards Rodney -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Thayer Sent: Tuesday, July 25, 2006 12:44 PM To: [EMAIL PROTECTED] Subject: Re: Inno Setup question On 7/25/06

Re: Inno Setup question

2006-07-25 Thread Dave Thayer
On 7/25/06, Rodney Dixon [EMAIL PROTECTED] wrote: Why do you do the shl (which I assume is shift left operation)? Short answer: That's how the examples I saw on the web worked! Long answer: As far as I can tell, if you have a file with a version aa.bb.cc.dd, the version number is actually

RE: Inno Setup question

2006-07-25 Thread Rodney Dixon
] Subject: Re: Inno Setup question On 7/25/06, Rodney Dixon [EMAIL PROTECTED] wrote: Why do you do the shl (which I assume is shift left operation)? Short answer: That's how the examples I saw on the web worked! Long answer: As far as I can tell, if you have a file with a version aa.bb.cc.dd

Re: Inno Setup question

2006-07-25 Thread Dave Thayer
On 7/25/06, Rodney Dixon [EMAIL PROTECTED] wrote: Ah, so if I'm say that anything less than version 4.0 fails the Inno upgradeable test I should do (4 shl 16) Yep, and if you wanted to test for version 4.11 you could do ``(4 shl 16) or 11'' dt -- Dave Thayer Denver, CO

Re: Inno Setup question

2006-07-21 Thread Sytze de Boer
Hi foxers Can some of you give opinion/advice please I have a free standing table, and a form with a 25 page pageframe Altogether there are some 100 text boxes and/or check boxes etc. As the client scrolls throught the table, depending on a specific flag, I need to either make the ENTIRE form

RE: Inno Setup question

2006-07-21 Thread Jim Winter
I have a free standing table, and a form with a 25 page pageframe Altogether there are some 100 text boxes and/or check boxes etc. As the client scrolls throught the table, depending on a specific flag, I need to either make the ENTIRE form read-only, or not read only. Is there a way to

RE: Inno Setup question

2006-07-21 Thread Dave Crozier
Crozier The secret to staying young is to live honestly, eat slowly, and to lie about your age -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sytze de Boer Sent: 21 July 2006 05:33 To: profox@leafe.com Subject: Re: Inno Setup question Hi foxers Can

RE: Inno Setup question

2006-07-21 Thread Andy Davies
Hi, I do something a bit more complicated - I set the readonly properties of controls on a form depending on properties set for it's cursor - this in the form init: LOCAL i, i0, in, j, aMm[1], cs, lup, oObj, oPage, lcOldErr, lOK lcOldErr = ON(ERROR) FOR EACH oPage IN thisform.pFrameBase1.pages

Re: Inno Setup question

2006-07-20 Thread Dave Thayer
On 7/20/06, Rodney Dixon [EMAIL PROTECTED] wrote: I have an application that has been around quite a while so I used the install builder that shipped with Visual Foxpro. I think it was VFP 6. I need to upgrade the application and I'm using Inno Setup for program installation now. Because of

Re: Inno Setup question

2006-07-20 Thread Dave Thayer
On 7/20/06, Dave Thayer [EMAIL PROTECTED] wrote: [buncha nonsense] Ack! Gmail wrapped some of the longer lines so beware if you cut-n-paste this code! -- Dave Thayer Denver, CO ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: Inno Setup question

2006-07-20 Thread Rodney Dixon
Thanks. It wouldn't be that big of a deal to have them go through Add/Remove. Regards Rodney -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Thayer Sent: Thursday, July 20, 2006 3:21 PM To: [EMAIL PROTECTED] Subject: Re: Inno Setup question