| View previous topic :: View next topic |
| Author |
Message |
Georges BONNEVIAL Guest
|
Posted: Wed Sep 10, 2003 8:00 am Post subject: How to know if we are in Design Time or Run Time ? |
|
|
I want to know in my component if I am in Design mode or in Run mode.
Is it possible ?
Thank's in advance for your reply
Georges
[email]g.bonnevial (AT) saxxo (DOT) fr[/email]
|
|
| Back to top |
|
 |
Michel Leunen Guest
|
Posted: Wed Sep 10, 2003 8:14 am Post subject: Re: How to know if we are in Design Time or Run Time ? |
|
|
Georges BONNEVIAL wrote:
| Quote: | I want to know in my component if I am in Design mode or in Run mode.
Is it possible ?
|
Use the ComponentState property of TComponent:
if(ComponentState.Contains(csDesigning))
{
//design time
}
else
{
//run time
}
Michel
--
----------------------------------------
Michel Leunen
mailto:michel (AT) leunen (DOT) com
http://www.leunen.com/cbuilder/
----------------------------------------
|
|
| Back to top |
|
 |
|