dev.emsdn.com

Join About
Home SITEMAP Most Recent

Delphi

Home »» Delphi [Programming]
Thread Profile: Install Program


Install Program

Hello Everybody,
I was wondering what is the best program is for creating
installs/setups? I have used InstallShield Express with mediocre
results. The program has several dependencies and a couple merged
modules. So if anyone has any better suggestions, I'm all ears. Also,
the cheaper the better
Thanks,
Nick
[Non-text portions of this message have been removed]
Yahoo! Groups Sponsor
Great things are happening at Yahoo! Groups. See the new email design.
Home page:
To unsubscribe: URL
Yahoo! Groups Links
<*To visit your group on the web, go to:
<*To unsubscribe from this group, send an email to:
URL
<*Your use of Yahoo! Groups is subject to:


total 5 Comments Similar Thread
  • 5Answer
  • Total

at [2008-5-5 5:43:40]


Hi Nick,

I was wondering what is the best program
is for creating installs/setups?

Jordan Russell's Inno Setup is far and away the best,
and what's more -- it's free, including the Delphi source:

Martin.

Yahoo! Groups Sponsor
See what's inside the new Yahoo! Groups email.

Home page:
To unsubscribe: URL
Yahoo! Groups Links

<*To visit your group on the web, go to:

<*To unsubscribe from this group, send an email to:
URL

<*Your use of Yahoo! Groups is subject to:


  • 1No.

at [2008-5-5 5:44:41]


I have a small application I've programmed to print bills on a matrix
printer.
It just print a few lines on a paper.

My code is quite standard.

BeginDoc
Print the lines
EndDoc

But my problem is that the printer keeps printing %5% on the top left corner
of the paper before printing the rest.

Anybody knows where that kind stuff migh come from and how to prevent it.

Thanks to any replies.

Yahoo! Groups Sponsor
Something is new at Yahoo! Groups. Check out the enhanced email design.

Home page:
To unsubscribe: URL
Yahoo! Groups Links

<*To visit your group on the web, go to:

<*To unsubscribe from this group, send an email to:
URL

<*Your use of Yahoo! Groups is subject to:


  • 2No.

at [2008-5-5 5:45:51]


Christian Labrie wrote:
I have a small application I've programmed to print bills on a matrix
printer.
It just print a few lines on a paper.

My code is quite standard.

BeginDoc
Print the lines
EndDoc

But my problem is that the printer keeps printing %5% on the top left corner
of the paper before printing the rest.

Anybody knows where that kind stuff migh come from and how to prevent it.

Thanks to any replies.

Not printed anything with Delphi, but Win32 APIs require StartDoc,
StartPage, print content, EndPage, EndDoc. The documentation for all
the printer stuff on Windows is pretty obtuse. Delphi appears to cover
most of that up - which is good, but in doing so there is the increased
possibility of messing up something.

That said, are you calling TPrintDialog? Failure to do so means that
Printer won't get a proper printer device context and that might be the
source of the problem.


  • 3No.

at [2008-5-5 5:46:45]


Hi All
I need to create Pop3 accounts on Users outlook,
has anyone done this, or does anyone have any sample code
i have all their email address and passwords and the settings, i just need to them to the user outlook account when they logon

Thanks in advance

Steve Riley
URL

[Non-text portions of this message have been removed]

Yahoo! Groups Sponsor
Check out the new improvements in Yahoo! Groups email.

Home page:
To unsubscribe: URL
Yahoo! Groups Links

<*To visit your group on the web, go to:

<*To unsubscribe from this group, send an email to:
URL

<*Your use of Yahoo! Groups is subject to:


  • 4No.

at [2008-5-5 5:47:44]


Not printed anything with Delphi, but Win32 APIs require StartDoc,
StartPage, print content, EndPage, EndDoc. The documentation for all
the printer stuff on Windows is pretty obtuse. Delphi appears to cover
most of that up - which is good, but in doing so there is the increased
possibility of messing up something.

That said, are you calling TPrintDialog? Failure to do so means that
Printer won't get a proper printer device context and that might be the
source of the problem.

Thanks for your reply,

I'll try those features. No I'M not calling TPrintDialog, maybe that's the
problem.

I'll keep you posted.

Christian

Yahoo! Groups Sponsor
Something is new at Yahoo! Groups. Check out the enhanced email design.

Home page:
To unsubscribe: URL
Yahoo! Groups Links

<*To visit your group on the web, go to:

<*To unsubscribe from this group, send an email to:
URL

<*Your use of Yahoo! Groups is subject to:


  • 5No.