Click here to Skip to main content
16,008,942 members
Home / Discussions / C#
   

C#

 
GeneralRe: Oh Sheesh ... how do you pass objects as parameters? Pin
Christian Graus1-Mar-08 13:34
protectorChristian Graus1-Mar-08 13:34 
QuestionHow to run application after login before explorer.exe runs? Pin
yasa1-Mar-08 10:21
yasa1-Mar-08 10:21 
GeneralRe: How to run application after login before explorer.exe runs? Pin
Christian Graus1-Mar-08 10:32
protectorChristian Graus1-Mar-08 10:32 
GeneralRe: How to run application after login before explorer.exe runs? Pin
PIEBALDconsult1-Mar-08 16:24
mvePIEBALDconsult1-Mar-08 16:24 
GeneralRe: How to run application after login before explorer.exe runs? Pin
User 23822921-Mar-08 18:10
User 23822921-Mar-08 18:10 
GeneralContext Menu Strips Pin
MarkMokris1-Mar-08 4:53
MarkMokris1-Mar-08 4:53 
AnswerRe: Context Menu Strips Pin
Eslam Afifi1-Mar-08 10:41
Eslam Afifi1-Mar-08 10:41 
GeneralSemi-Transparent Form Click Pass-Through Pin
User 127821-Mar-08 4:10
User 127821-Mar-08 4:10 
I have a C# form that I want to act as a semi-transparent on-screen display. If the user clicks in my application I would like the message to be passed down to the window below it.

From Google, I've tried adding the GWL_EXSTYLE, WS_EXSTYLE and WS_EX_TRANSPARENT styles to the window with no luck.

I've also tried to override my WnnProc handler to return the MA_NOACTIVATE style to disregard the message and hopefully pass it on through:

<br />
        protected override void WndProc(ref Message m)<br />
        {<br />
            if (m.Msg == WM_MOUSEACTIVATE)<br />
            {<br />
                m.Result = (IntPtr)MA_NOACTIVATE;<br />
            }<br />
            else <br />
                base.WndProc(ref m);<br />
        }


Neither worked. Does anybody have any suggestions on what to try?

Thanks,
Aaron

modified 12-Jul-20 21:01pm.

GeneralRe: Semi-Transparent Form Click Pass-Through Pin
mav.northwind1-Mar-08 6:02
mav.northwind1-Mar-08 6:02 
GeneralRe: Semi-Transparent Form Click Pass-Through Pin
User 127824-Mar-08 17:09
User 127824-Mar-08 17:09 
QuestionC# Pin
Nath1-Mar-08 0:15
Nath1-Mar-08 0:15 
GeneralRe: C# Pin
yogesh_kumar_agarwal1-Mar-08 0:28
yogesh_kumar_agarwal1-Mar-08 0:28 
GeneralRe: C# Pin
Luc Pattyn1-Mar-08 0:49
sitebuilderLuc Pattyn1-Mar-08 0:49 
JokeRe: C# Pin
Xmen Real 1-Mar-08 2:32
professional Xmen Real 1-Mar-08 2:32 
GeneralRead the forum guidelines Pin
pmarfleet1-Mar-08 2:32
pmarfleet1-Mar-08 2:32 
GeneralRe: Read the forum guidelines Pin
Not Active1-Mar-08 9:19
mentorNot Active1-Mar-08 9:19 
GeneralRe: C# Pin
Paul Conrad1-Mar-08 12:29
professionalPaul Conrad1-Mar-08 12:29 
GeneralImplementing IEnumerable<t></t> Pin
Jammer1-Mar-08 0:14
Jammer1-Mar-08 0:14 
GeneralRe: Implementing IEnumerable Pin
Not Active1-Mar-08 2:19
mentorNot Active1-Mar-08 2:19 
GeneralRe: Implementing IEnumerable Pin
Jammer1-Mar-08 2:28
Jammer1-Mar-08 2:28 
GeneralRe: Implementing IEnumerable Pin
Jammer1-Mar-08 3:01
Jammer1-Mar-08 3:01 
GeneralRe: Implementing IEnumerable Pin
papadimitriou1-Mar-08 3:51
papadimitriou1-Mar-08 3:51 
GeneralRe: Implementing IEnumerable Pin
Jammer1-Mar-08 4:01
Jammer1-Mar-08 4:01 
GeneralRe: Implementing IEnumerable Pin
Jammer1-Mar-08 4:05
Jammer1-Mar-08 4:05 
GeneralRe: Implementing IEnumerable Pin
papadimitriou1-Mar-08 4:16
papadimitriou1-Mar-08 4:16 

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.