PDA

View Full Version : Advice - How To Install



NewsArchive
08-19-2016, 03:15 AM
Hi All

I have no idea if I am on the wrong track here. Using setupbuilder I
need to install an app so that when the machine starts it always starts
and it sits in the app "tray". We need this as it will be polling a web
service for latest information. I do not want to install this as a
service as the interface is required and is critical. Is there a way
around this?

Cheers
Andre

NewsArchive
08-19-2016, 11:52 AM
Hi All

I have an app that needs to keep running at all times [it occassionally
polls a web service] but I do not want it to run as a service as it is a
real app with rich interface and so on. I am using Setupbuilder for
installs. Is there anyway I can automatically get it into the start
system and then into the app tray so that the user does not have to
start it manually? I am trying to avoid a service that will call this app.

Cheers
Andre

NewsArchive
08-19-2016, 11:52 AM
> I have an app that needs to keep running at all times [it occassionally
> polls a web service] but I do not want it to run as a service as it is a
> real app with rich interface and so on. I am using Setupbuilder for
> installs. Is there anyway I can automatically get it into the start
> system and then into the app tray so that the user does not have to
> start it manually? I am trying to avoid a service that will call this app.

Andre,

Just use WinEvent to put it into the system tray (and setup user
interaction with it there).

Then use SetupBuilder to add a Registry entry to
HKCU\Software\Microsoft\Windows\CurrentVersion\Run

if you want it to run for the current user, or to

HKLM\Software\Microsoft\Windows\CurrentVersion\Run

if you want it to run for all user accounts on the PC.


We do this with multiple products and it works flawlessly.

Does that help?

Charles


--
-------------------------------------------------------------------------------------------------------
Charles Edmonds

cjeByteMeSpammers@lansrad.com (remove the "ByteMeSpammers" to email me)
www.clarionproseries.com - ProScan, ProImage, ProPath and other Clarion
developer tools!
www.solidsoftware.de - ImageEx and RichReport templates!
www.seal-soft.com - The xProduct Clarion templates - xWordCOM, xToolTip,
xDataBackup Manager and more!
www.ezchangelog.com - "Free ChangeLog software to manage your projects!"
www.setupcast.com - "A revolutionary new publishing system for software
developers - enhanced for SetupBuilder users!"
www.pagesnip.com - "Print and Save the Web, just the way you want it!"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms - Now with PNG support!
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------

NewsArchive
08-19-2016, 11:53 AM
Hi Charles

Excellent. You are, what I would call a genius :-)

I will read up on the registry stuff as I have never used setupbuilder
for that yet. May need to PM you.

Cheers
Andre

NewsArchive
08-20-2016, 10:45 AM
> Excellent. You are, what I would call a genius :-)

LOL - nah, I have just "been there and done that"<g>.


> I will read up on the registry stuff as I have never used setupbuilder
> for that yet. May need to PM you.

It is pretty straight forward - see attached.

SetupBuilder makes it easy (just one function in the script).


If you get stuck then give me a yell.


:-)

Charles


--
-------------------------------------------------------------------------------------------------------
Charles Edmonds

cjeByteMeSpammers@lansrad.com (remove the "ByteMeSpammers" to email me)
www.clarionproseries.com - ProScan, ProImage, ProPath and other Clarion
developer tools!
www.solidsoftware.de - ImageEx and RichReport templates!
www.seal-soft.com - The xProduct Clarion templates - xWordCOM, xToolTip,
xDataBackup Manager and more!
www.ezchangelog.com - "Free ChangeLog software to manage your projects!"
www.setupcast.com - "A revolutionary new publishing system for software
developers - enhanced for SetupBuilder users!"
www.pagesnip.com - "Print and Save the Web, just the way you want it!"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms - Now with PNG support!
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------

NewsArchive
08-20-2016, 10:46 AM
Thanks!

Andre Labuschagne