Discussion:
IDE loaded
(too old to reply)
Dmitry
2007-11-29 04:26:48 UTC
Permalink
Hello,
I can't find how determine when IDE is loaded.
Thanks.
JED
2007-11-29 03:38:10 UTC
Permalink
Post by Dmitry
Hello,
I can't find how determine when IDE is loaded.
Thanks.
Amazingly you can't.

The best way to do this is use a timer and test for the specific
interfaces you need to interact with.
--
TJSDialog - TaskDialog for other operating systems:
http://www.jed-software.com/jsd.htm
Visual Forms IDE Add In: http://www.jed-software.com/vf.htm

Blog: http://jedqc.blogspot.com
Delphi
2007-11-29 05:35:13 UTC
Permalink
Post by JED
Post by Dmitry
Hello,
I can't find how determine when IDE is loaded.
Thanks.
Amazingly you can't.
The best way to do this is use a timer and test for the specific
interfaces you need to interact with.
I think there is way do it with IOTA*** interface like IOTAIDENotifier
does.
Dave Nottage [TeamB]
2007-11-29 06:42:20 UTC
Permalink
Post by Dmitry
I can't find how determine when IDE is loaded.
Depends on which part you mean. If you mean when the main form is
completely loaded, previously I have used a thread to check when
Application.MainForm.Active becomes True.
--
Dave Nottage [TeamB]
Dmitry
2007-11-29 08:15:00 UTC
Permalink
Post by Dave Nottage [TeamB]
Post by Dmitry
I can't find how determine when IDE is loaded.
Depends on which part you mean. If you mean when the main form is
completely loaded, previously I have used a thread to check when
Application.MainForm.Active becomes True.
I mean when IDE is just loaded
and there may be no opened projects.
Michael Harris
2007-11-29 18:26:41 UTC
Permalink
Wizards are loaded just prior to previously open project & | files <?>
So if your wizard is loaded.....

--
Michael

"Dmitry" wrote in message
Post by Dmitry
I mean when IDE is just loaded
and there may be no opened projects.
Dmitry
2007-11-30 03:58:38 UTC
Permalink
Post by Michael Harris
Wizards are loaded just prior to previously open project & | files <?>
So if your wizard is loaded.....
--
Michael
"Dmitry" wrote in message
Post by Dmitry
I mean when IDE is just loaded
and there may be no opened projects.
Thanks Michael, I will try.
Adrian Pasik
2008-05-06 06:00:38 UTC
Permalink
Post by Michael Harris
So if your wizard is loaded.....
How about having multiple wizards.... are they being loaded alphabetically?


Adrian
Lex Y. Li
2008-05-07 12:29:25 UTC
Permalink
I guess they are loaded according to how their registry entries are
organized. Generally speaking, you should not write any code that relies
on a specific loading order. If you take a look around, nearly all
experts for Delphi follow this rule.

Continue reading on narkive:
Loading...