Click here to Skip to main content
15,893,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: Regarding to Browsers Button Pin
Pete O'Hanlon15-Oct-07 3:15
mvePete O'Hanlon15-Oct-07 3:15 
GeneralRe: Regarding to Browsers Button Pin
Malcolm Smart15-Oct-07 3:34
Malcolm Smart15-Oct-07 3:34 
GeneralRe: Regarding to Browsers Button Pin
Pete O'Hanlon15-Oct-07 3:40
mvePete O'Hanlon15-Oct-07 3:40 
QuestionHow to create windows custom control in c#.net Pin
NK715-Oct-07 0:11
NK715-Oct-07 0:11 
AnswerRe: How to create windows custom control in c#.net Pin
Andrei Ungureanu15-Oct-07 0:16
Andrei Ungureanu15-Oct-07 0:16 
QuestionPanel Opacity Pin
AB777114-Oct-07 23:49
AB777114-Oct-07 23:49 
AnswerRe: Panel Opacity Pin
Ajay.k_Singh15-Oct-07 0:25
Ajay.k_Singh15-Oct-07 0:25 
AnswerRe: Panel Opacity Pin
Martin#15-Oct-07 1:49
Martin#15-Oct-07 1:49 
Hello,

Example for Transparency:
If you have inherited a panel from System.Windows.Forms.Panel,
you could try out adding this code.
protected override CreateParams CreateParams 
{ 
    get 
    { 
        CreateParams cp = base.CreateParams; 
        cp.ExStyle |= 0x20; 
        return cp; 
    } 
} 

protected override void OnPaintBackground(PaintEventArgs e) 
{}

Maybe it fits your needs!
It doesn't support DoubleBuffer.



All the best,

Martin

QuestionGet Thread Result (IAsyncResult) Pin
Patricio Tapia14-Oct-07 23:05
Patricio Tapia14-Oct-07 23:05 
AnswerRe: Get Thread Result (IAsyncResult) Pin
Mandaar Kulkarni14-Oct-07 23:24
Mandaar Kulkarni14-Oct-07 23:24 
AnswerRe: Get Thread Result (IAsyncResult) Pin
lmoelleb14-Oct-07 23:31
lmoelleb14-Oct-07 23:31 
GeneralRe: Get Thread Result (IAsyncResult) Pin
Patricio Tapia15-Oct-07 0:19
Patricio Tapia15-Oct-07 0:19 
Questionabout html operate [modified] Pin
jason_mf14-Oct-07 22:58
jason_mf14-Oct-07 22:58 
AnswerRe: about html operate Pin
Mandaar Kulkarni14-Oct-07 23:09
Mandaar Kulkarni14-Oct-07 23:09 
GeneralRe: about html operate Pin
jason_mf14-Oct-07 23:13
jason_mf14-Oct-07 23:13 
GeneralRe: about html operate Pin
Mandaar Kulkarni14-Oct-07 23:22
Mandaar Kulkarni14-Oct-07 23:22 
GeneralRe: about html operate Pin
jason_mf15-Oct-07 5:02
jason_mf15-Oct-07 5:02 
GeneralRe: about html operate Pin
Mandaar Kulkarni15-Oct-07 20:04
Mandaar Kulkarni15-Oct-07 20:04 
AnswerRe: about html operate Pin
Guffa14-Oct-07 23:14
Guffa14-Oct-07 23:14 
GeneralRe: about html operate Pin
jason_mf14-Oct-07 23:28
jason_mf14-Oct-07 23:28 
GeneralRe: about html operate Pin
Guffa15-Oct-07 6:56
Guffa15-Oct-07 6:56 
GeneralRe: about html operate Pin
jason_mf15-Oct-07 15:45
jason_mf15-Oct-07 15:45 
AnswerRe: about html operate Pin
Guffa16-Oct-07 0:36
Guffa16-Oct-07 0:36 
QuestionCan't set focus to some button in my Form - please help me ... Pin
Yanshof14-Oct-07 22:09
Yanshof14-Oct-07 22:09 
AnswerRe: Can't set focus to some button in my Form - please help me ... Pin
il_masacratore15-Oct-07 0:23
il_masacratore15-Oct-07 0:23 

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.