Link to home
Start Free TrialLog in
Avatar of jackjoker
jackjoker

asked on

Application Reload

Is there a way to reload an application while it's running through delphi code? Maybe when the user presses a button or something.
ASKER CERTIFIED SOLUTION
Avatar of viktornet
viktornet
Flag of United States of America 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
another thing to try is as follows...

Application.Terminate;

Application.Run;

but I don't think that the code after Application.terminate; would even run, so that would not work... buy can give it a try...

-vik-
Avatar of inthe
inthe

ReCreateWnd maybe??

you need to give more info as to why you want to do this..