| Subject |
Re: deployment questions from Horst Selig |
| From |
Gaetano D. <gaetanoddRemoveThis@andThatHotmail.com> |
| Date |
Sat, 3 Jul 2021 07:48:54 +1000 |
| Newsgroups |
dbase.getting-started |
On 3/07/2021 06:43, horst selig wrote:
> Gaetano D. Wrote:
>
>> Hello I am new here and 80 years old. I have 2 questions for everyone.
>> I have already written several programs for myself with dbase3.5, I never needed a project file.
>> Now I have written a program (with 9.1), which I want to download over the internet on my own website. I named the project file HSE, put a runtime in it. Everything is fine, but: when I click on the HSE many files come
>> files appear on the screen and the customer does not know which file to click.
>> I have named the form.main file -foreign accounting-. How can I do this so that
>> the customer clicks HSE and immediately comes to the correct \"fremdabrechnung\" form, file.
>> The next question: how can I make that the downloaded file appears on the desktop?
>> appear? I am very grateful for any help. There are no stupid questions for those who do not know.
>> Horst Selig
>>
>> Translated withwww.DeepL.com/Translator (free version)
>>
>> --
>> Gaetano.
>>
One preliminary question: if you double-click abrechdruck99 in the first
screenshot, does the application start and work as expected? If it does,
I would still not recommend to leave it there because mixing the
applications with thw BDE is likely to cause problems at some stage. If
it works you would probably just need to change the location of the
application and BDE. The BDE should be under C:\Program Files
(x86)\Common Files\Borland\BDE and the runtimes under C:\Program Files
(x86)\dBASE\Plus9\Runtime.
I cannot see the folder name, so I cannot say if this is the application
folder or the BDE folder but I do see the application executable and
that should never be in the same folder as the BDE.
Did you create an Innoscript to create an installation program? if so,
it would help if you copy the script here so we understand how those
files are getting mixed together. Please mask any sensitive information
before posting.
The Inno script should have something like the following section (
{pf}=program files and {cf} = common files, while your app should be in
{app} which can either be c:\dbaseapps or c:\program files(x86)\myapp):
; ----------------------------------------------------- ; Where the
dBASE™ PLUS Runtime Engine will go: "C:\Program Files (x86)" if on ;
64-bit versions of Windows, or on 32-bit versions, "C:\Program Files"):
Name: "{pf}\dBASE\Plus\Runtime"; Permissions: everyone-readexec; Flags: uninsneveruninstall;
; ----------------------------------------------------- ; Where the BDE
will go:
Name: "{cf}\Borland\BDE"; Permissions: everyone-full; Flags: uninsneveruninstall;
*[Run]*
; dBASE™ PLUS 11 -- parameter of /S seems to be the "silent" install
Filename: {tmp}\PLUS1110Runtime-b2536_ALL.exe;Parameters: "/S";Flags: runascurrentuser waituntilterminated runhidden;Description: "dBASE Runtime and BDE";StatusMsg: "Installing dBASE Runtime and BDE...";WorkingDir: {tmp};
and to put an icon on the desktop:
*[Icons] *
; Application icon
Name: "{group}\dBASE Tutorial";Filename: "{app}\tutorial.exe";WorkingDir: "{app}"
; Desktop icons:
Name: "{userdesktop}\dBASE Tutorial";Filename: "{app}\tutorial.exe";IconFilename: "{app}\tutorial.exe";WorkingDir: "{app}";Comment: "dBASE Tutorial Application";
Cheers,
Gaetano.
--
Gaetano.
|
|