Link to home
Start Free TrialLog in
Avatar of keithtbe
keithtbe

asked on

exe file

how to make installer?
if i make exe file
when i open thru the other pc , since the destination is not the same, it cannot open the programme
what should i do?
somemore my report writer is crystal rpt
is that everybody used this programme must have visual basic and crystal report?
pls help
how
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bebeirken
Bebeirken

You can use the tool that vb ships with it's installation. It is the Package & Deployment Wizard.
It will do all the work for you. Just make sure that in your program you don't have any paths hardcoded, because they might not exist on the other pc.

If you use app.path instead and put all your data and reports under the same directory as your forms, it sure work fine.

This way you can install the program on another computer without having problems with paths and stuff.
Avatar of keithtbe

ASKER

thanks alot
but u mean the crystal report cannot work thru the package & deployment wizard
that mean my programme also cannot been open in the other pc . so what should i do?
The CR DLL required by your application will be included and installed with your application.

The .rpt will not automatically be recognized. You have to manually add them. During the packaging, there is an option for this.
emoreau
what u mean by i have to add the rpt manually
?
i have try to install the program and use the program in the other pc and find out that the rpt was not found
so what should i do?
it is urgent
pls help me
can u pls explain to me what u mean by add manually ?
explain in detail pls
thanks u
Copy all the .rpt files (which are your reports) with the application.

There is a step, if you want to, in the PDW that allow you to add any files (like .rpt) to the package so that these files will be installed at the same time that the application will be.
u mean that i have to copy the crystal rpt file
like monthly.rpt
yearly.rpt into the file
and what u mean by the application?
where to get?u mean crystal rpt software?
«u mean that i have to copy the crystal rpt file
like monthly.rpt
yearly.rpt into the file »
These files are not compiled into the application!

«and what u mean by the application? »
YOUR application. Didn't you compile a .exe?

What did you use to build your setup package? In that tool, you have a step to manually add .rpt files.
oic
i know what u mean
of course use the package and deployment wizard to make my setup package
ok
u mean i have to add all the month.rpt, yearltly.rpt which is the design to the desired report format of crystal rpt
u mean i have to add that is it?
ok
i will try and see whether it can run or not
i try already
i try to add the .rpt file in the package and deploy wizard
but still cannot
so what is the real problem?
When you call your report from your VB application, how do you call it? You should set your report file name to app.path & "\monthly.rpt"