P PGP Dec 12, 2007 #1 In the full framework, there is the Component.DesignMode property. What is the alternative for compact framework? TIA Priyesh
In the full framework, there is the Component.DesignMode property. What is the alternative for compact framework? TIA Priyesh
P PeterMcMillan1 Dec 13, 2007 #2 In the full framework, there is the Component.DesignMode property. What is the alternative for compact framework? TIA Priyesh Click to expand... I do: bool designMode; if (this.Site == null) { designMode = false; } else { designMode = this.Site.DesignMode; }
In the full framework, there is the Component.DesignMode property. What is the alternative for compact framework? TIA Priyesh Click to expand... I do: bool designMode; if (this.Site == null) { designMode = false; } else { designMode = this.Site.DesignMode; }
P PGP Dec 13, 2007 #3 I do: bool designMode; if (this.Site == null) { designMode = false; } else { designMode = this.Site.DesignMode; } Click to expand... Peter, That works. Thanks!
I do: bool designMode; if (this.Site == null) { designMode = false; } else { designMode = this.Site.DesignMode; } Click to expand... Peter, That works. Thanks!