Click here to Skip to main content
15,914,780 members
Home / Discussions / C#
   

C#

 
GeneralRe: Attribute Usage Pin
Andy Smith3-Aug-02 6:24
Andy Smith3-Aug-02 6:24 
GeneralHmm... this couldn't be right.... Pin
Ryan Cromwell2-Aug-02 8:29
Ryan Cromwell2-Aug-02 8:29 
GeneralRe: Hmm... this couldn't be right.... Pin
jterrell2-Aug-02 18:29
jterrell2-Aug-02 18:29 
GeneralRe: Hmm... this couldn't be right.... Pin
Ryan Cromwell5-Aug-02 2:42
Ryan Cromwell5-Aug-02 2:42 
GeneralRe: Hmm... this couldn't be right.... Pin
Russell Morris5-Aug-02 6:32
Russell Morris5-Aug-02 6:32 
GeneralRe: Hmm... this couldn't be right.... Pin
Ryan Cromwell5-Aug-02 8:49
Ryan Cromwell5-Aug-02 8:49 
QuestionHow to catch the WM_ACTIVATEAPP message in C#? Pin
Anonymous2-Aug-02 6:09
Anonymous2-Aug-02 6:09 
AnswerRe: How to catch the WM_ACTIVATEAPP message in C#? Pin
Rama Krishna Vavilala2-Aug-02 6:26
Rama Krishna Vavilala2-Aug-02 6:26 
I just did it 5 minutes back (what a coincidence). There is no equivalent of this in C#. Here is a code snippet from my class:-

const int WM_ACTIVATEAPP = 0x001C;

protected override void WndProc(ref Message m)
{
if ((m.Msg == WM_ACTIVATEAPP) && (m.WParam == IntPtr.Zero))
{
//OnDeactivateApp(EventArgs.Empty);
}
else
base.WndProc(ref m);
}

Step back, rub your eyes, take a deep breath, stretch a bit, and reflect on the relative importance of CP, CG, the age / travel time sustained by supposedly 'fresh' cheese curds, and Life in General. - Shog9
GeneralRe: How to catch the WM_ACTIVATEAPP message in C#? Pin
jparsons2-Aug-02 7:33
jparsons2-Aug-02 7:33 
GeneralRe: How to catch the WM_ACTIVATEAPP message in C#? Pin
Rama Krishna Vavilala2-Aug-02 8:26
Rama Krishna Vavilala2-Aug-02 8:26 
GeneralRe: How to catch the WM_ACTIVATEAPP message in C#? Pin
jterrell2-Aug-02 18:31
jterrell2-Aug-02 18:31 
GeneralI miss templates Pin
Shaun Wilde2-Aug-02 3:04
Shaun Wilde2-Aug-02 3:04 
GeneralRe: I miss templates Pin
Shaun Wilde2-Aug-02 3:10
Shaun Wilde2-Aug-02 3:10 
GeneralRe: I miss templates Pin
jterrell2-Aug-02 18:39
jterrell2-Aug-02 18:39 
QuestionUnloading a UserControl? Pin
Vasek2-Aug-02 1:15
Vasek2-Aug-02 1:15 
AnswerRe: Unloading a UserControl? Pin
Rutger Ellen2-Aug-02 1:37
Rutger Ellen2-Aug-02 1:37 
AnswerRe: Unloading a UserControl? Pin
Vasek2-Aug-02 1:38
Vasek2-Aug-02 1:38 
AnswerRe: Unloading a UserControl? Pin
James T. Johnson2-Aug-02 1:44
James T. Johnson2-Aug-02 1:44 
GeneralRe: Unloading a UserControl? Pin
Vasek2-Aug-02 2:11
Vasek2-Aug-02 2:11 
GeneralA rich edit question Pin
Nish Nishant2-Aug-02 1:05
sitebuilderNish Nishant2-Aug-02 1:05 
GeneralRe: A rich edit question Pin
Nathan Blomquist2-Aug-02 1:15
Nathan Blomquist2-Aug-02 1:15 
GeneralRe: A rich edit question Pin
Nish Nishant2-Aug-02 1:25
sitebuilderNish Nishant2-Aug-02 1:25 
GeneralRe: A rich edit question Pin
Nathan Blomquist2-Aug-02 2:28
Nathan Blomquist2-Aug-02 2:28 
GeneralTextBoxBase.OnModifiedChanged problem Pin
Nish Nishant1-Aug-02 22:41
sitebuilderNish Nishant1-Aug-02 22:41 
GeneralRe: TextBoxBase.OnModifiedChanged problem Pin
Nish Nishant1-Aug-02 22:47
sitebuilderNish Nishant1-Aug-02 22:47 

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.