Click here to Skip to main content
15,908,166 members
Home / Discussions / C#
   

C#

 
GeneralRe: Custom URL Handler Pin
Curtis Schlak.17-Dec-05 11:11
Curtis Schlak.17-Dec-05 11:11 
GeneralRe: Custom URL Handler Pin
notacake20-Dec-05 3:59
notacake20-Dec-05 3:59 
QuestionMorphing widgets: Form to Gradient Form Pin
zopiro16-Dec-05 8:37
zopiro16-Dec-05 8:37 
AnswerRe: Morphing widgets: Form to Gradient Form Pin
g00fyman16-Dec-05 15:31
g00fyman16-Dec-05 15:31 
QuestionReduce the container zone of a panel. Pin
galinace16-Dec-05 8:36
galinace16-Dec-05 8:36 
AnswerRe: Reduce the container zone of a panel. Pin
TheGreatAndPowerfulOz16-Dec-05 11:32
TheGreatAndPowerfulOz16-Dec-05 11:32 
AnswerRe: Reduce the container zone of a panel. Pin
Curtis Schlak.16-Dec-05 11:41
Curtis Schlak.16-Dec-05 11:41 
GeneralRe: Reduce the container zone of a panel. Pin
galinace16-Dec-05 22:38
galinace16-Dec-05 22:38 
Hi
thanks for your post.

I'll be very interested on your article about tab control (I'll have to work on this problem in a few day).

About the problem of reducing the displayrectangle of my control. I tried the first point you saied
Curtis S. wrote:
1. Override the DisplayRect to return the amount of area that you want the client to use.


The result is :
public override Rectangle DisplayRectangle {
            get {
                Rectangle rec = base.DisplayRectangle;
                return new Rectangle(
                    rec.X+(int)this._epaisseurBord,
                    rec.Y+(int)this._tailleBarTitre,
                    (int)(rec.Width-this._epaisseurBord*2),
                    (int)(rec.Height-this._tailleBarTitre-this._epaisseurBord));
            }
        }

(sorry for the french name of my properties Smile | :) )

The problem is I have no result. The breakpoint i used in debug mode show that this property is nerver acces.
At the end controls like button or label appear where ever they want on all the surface of my control.

The other point you told me are much more for a tabcontrol I think because the goal of my control is to have no control on it but can receive some.

Do you have an idea about why that doesn't work ???

Thanks for all

-- modified at 4:39 Saturday 17th December, 2005
GeneralRe: Reduce the container zone of a panel. Pin
Curtis Schlak.17-Dec-05 4:22
Curtis Schlak.17-Dec-05 4:22 
GeneralRe: Reduce the container zone of a panel. Pin
galinace17-Dec-05 4:59
galinace17-Dec-05 4:59 
GeneralRe: Reduce the container zone of a panel. Pin
Curtis Schlak.28-Dec-05 9:55
Curtis Schlak.28-Dec-05 9:55 
GeneralRe: Reduce the container zone of a panel. Pin
galinace18-Dec-05 6:25
galinace18-Dec-05 6:25 
GeneralRe: Reduce the container zone of a panel. Pin
Curtis Schlak.19-Dec-05 18:07
Curtis Schlak.19-Dec-05 18:07 
QuestionReflection code: C# and VB.Net equivalents in .NET 1.1 Pin
pankazmittal16-Dec-05 6:58
pankazmittal16-Dec-05 6:58 
AnswerRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
Nish Nishant16-Dec-05 7:35
sitebuilderNish Nishant16-Dec-05 7:35 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
pankazmittal16-Dec-05 7:49
pankazmittal16-Dec-05 7:49 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
Nish Nishant16-Dec-05 9:52
sitebuilderNish Nishant16-Dec-05 9:52 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
Nish Nishant16-Dec-05 9:53
sitebuilderNish Nishant16-Dec-05 9:53 
AnswerRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
Nish Nishant16-Dec-05 9:57
sitebuilderNish Nishant16-Dec-05 9:57 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
pankazmittal16-Dec-05 9:59
pankazmittal16-Dec-05 9:59 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
Nish Nishant16-Dec-05 10:02
sitebuilderNish Nishant16-Dec-05 10:02 
GeneralRe: Reflection code: C# and VB.Net equivalents in .NET 1.1 Pin
pankazmittal16-Dec-05 10:03
pankazmittal16-Dec-05 10:03 
Questionpreview and print a PrintDocument in VB6 Pin
IsaacB16-Dec-05 6:55
IsaacB16-Dec-05 6:55 
QuestionHUH ?? Pin
IceWater4216-Dec-05 6:36
IceWater4216-Dec-05 6:36 
AnswerRe: HUH ?? Pin
Dave Kreskowiak16-Dec-05 6:55
mveDave Kreskowiak16-Dec-05 6:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.