Installer for my access application

  • Thread starter Thread starter Alek Luchnikov
  • Start date Start date
A

Alek Luchnikov

Hello, All!
I searching for installer for my program.
It must support creating link like "path to msaccess.exe" "path to
myprog.mde" /wrkgrp "path to users.mde"
Is anybody know best solution for this???
Thank you in advance.

With best regards, Alek Luchnikov. E-mail:
(e-mail address removed)
=================================================
 
Hello, Amy!
It is interesting that in innosetup i can't find how to create link "path
to msaccess.exe" "path to
myprog.mde" /wrkgrp "path to users.mde"
If you know how to, you are welcome . . .


With best regards, Alek Luchnikov. E-mail:
(e-mail address removed)
 
Alek Luchnikov said:
Hello, Amy!
It is interesting that in innosetup i can't find how to create link "path
to msaccess.exe" "path to
myprog.mde" /wrkgrp "path to users.mde"
If you know how to, you are welcome . . .

I believe Inno has forums where you can ask. But it may be that this is not
something you can get at from outside Access.

HTH;

Amy
 
Your inno line for a shortcut with a workgroup file will look like:


Name: "{userdesktop}\Rides Stampede Reservations";
FileName: "C:\Program Files\Microsoft Office\OFFICE11\MSACCESS.EXE";
Parameters: """{app}\membersDataBaseS.mde""
/Wrkgrp ""\\mainServer\OFFICE\DOCUMENTS\DATA BASE\security.mdw""
/runtime ";
IconFilename: "{app}\cowboy.ico";
comment: "Starts the Rides Booking System"

Above is example for access 2003...
 
a path may not be necessary as windows may have a path already to the office
applications


msaccess.exe db.mdb etc
 
Back
Top