Click here to Skip to main content
15,918,808 members
Home / Discussions / C#
   

C#

 
QuestionApplication error on closing a .Net application. Pin
pranu_1325-Feb-07 19:03
pranu_1325-Feb-07 19:03 
AnswerRe: Application error on closing a .Net application. Pin
Expert Coming25-Feb-07 19:47
Expert Coming25-Feb-07 19:47 
AnswerRe: Application error on closing a .Net application. Pin
pbraun3-Mar-07 14:54
pbraun3-Mar-07 14:54 
QuestionUserControl priority Pin
AesopTurtle25-Feb-07 18:24
AesopTurtle25-Feb-07 18:24 
AnswerRe: UserControl priority Pin
Judah Gabriel Himango26-Feb-07 13:38
sponsorJudah Gabriel Himango26-Feb-07 13:38 
QuestionGDI and User Control related Pin
fjlv200525-Feb-07 18:06
fjlv200525-Feb-07 18:06 
AnswerRe: GDI and User Control related Pin
Snews25-Feb-07 18:43
Snews25-Feb-07 18:43 
QuestionRe: GDI and User Control related Pin
fjlv200525-Feb-07 19:00
fjlv200525-Feb-07 19:00 
Hi SNews

Thanks for your feedback, however, I already tried to add a handler to my panel. so that in the forms code :

mypanel.SetParentControl(myparentcontrolorparentform);

and on my panel code:

private Control m_parentcontrol=null;
public void SetParentControl(Control e) { m_parentcontrol=e; }
[Browsable(true)]
[TypeConverter(typeof(boolValueConverter))]
[DisplayName("Collapse"), Category("Panel Information"), Description("Minimize/Maximize Panel")]
public bool Collapse
{
get { return m_isminimized; }
set {
m_isminimized = value;
if(m_parent!=null) m_parentcontrol.Refresh();
Refresh();
}
}

However the when my panel is minimized, the area that was left behind displays the transparent color. If its okay with you, can i ask for your email address so that I could email you the output sample of my program.

Perhaps I'll to follow your second suggestion, however how can my user control aware or get the area only that it has overlapped?

Thanks

AnswerRe: GDI and User Control related Pin
Snews25-Feb-07 19:36
Snews25-Feb-07 19:36 
Questionconnection string for OLEDB2 provider..using C# Pin
icesha25-Feb-07 16:56
icesha25-Feb-07 16:56 
AnswerRe: connection string for OLEDB2 provider..using C# Pin
Snews25-Feb-07 18:49
Snews25-Feb-07 18:49 
GeneralRe: connection string for OLEDB2 provider..using C# Pin
icesha25-Feb-07 19:09
icesha25-Feb-07 19:09 
GeneralRe: connection string for OLEDB2 provider..using C# Pin
icesha25-Feb-07 19:09
icesha25-Feb-07 19:09 
QuestionHow to know the character '\u149d' is what? Pin
god4k25-Feb-07 15:22
god4k25-Feb-07 15:22 
QuestionDrawing then adding to a page Pin
Expert Coming25-Feb-07 14:51
Expert Coming25-Feb-07 14:51 
AnswerRe: Drawing then adding to a page Pin
NanaAM25-Feb-07 17:29
NanaAM25-Feb-07 17:29 
QuestionRe: Drawing then adding to a page Pin
Expert Coming25-Feb-07 17:59
Expert Coming25-Feb-07 17:59 
AnswerRe: Drawing then adding to a page Pin
NanaAM25-Feb-07 18:25
NanaAM25-Feb-07 18:25 
QuestionRe: Drawing then adding to a page Pin
Expert Coming25-Feb-07 18:28
Expert Coming25-Feb-07 18:28 
AnswerRe: Drawing then adding to a page Pin
NanaAM25-Feb-07 19:05
NanaAM25-Feb-07 19:05 
GeneralRe: Drawing then adding to a page Pin
Expert Coming25-Feb-07 19:09
Expert Coming25-Feb-07 19:09 
GeneralRe: Drawing then adding to a page Pin
NanaAM25-Feb-07 19:39
NanaAM25-Feb-07 19:39 
GeneralRe: Drawing then adding to a page Pin
Expert Coming25-Feb-07 19:43
Expert Coming25-Feb-07 19:43 
QuestionCircular control reference... [modified] Pin
new_phoenix25-Feb-07 14:41
new_phoenix25-Feb-07 14:41 
QuestionListview - Changing the Column Header colours Pin
Glen Harvy25-Feb-07 12:22
Glen Harvy25-Feb-07 12:22 

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.