Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
Questionhow many controll into a panel Pin
nhathoang8-Aug-07 23:29
nhathoang8-Aug-07 23:29 
AnswerRe: how many controll into a panel Pin
Christian Graus8-Aug-07 23:35
protectorChristian Graus8-Aug-07 23:35 
AnswerRe: how many controll into a panel Pin
Luc Pattyn9-Aug-07 0:33
sitebuilderLuc Pattyn9-Aug-07 0:33 
GeneralRe: how many controll into a panel Pin
Christian Graus9-Aug-07 0:52
protectorChristian Graus9-Aug-07 0:52 
GeneralRe: how many controll into a panel Pin
Luc Pattyn9-Aug-07 2:23
sitebuilderLuc Pattyn9-Aug-07 2:23 
AnswerRe: how many controll into a panel Pin
tonic_valan9-Aug-07 1:46
tonic_valan9-Aug-07 1:46 
QuestionForm WM_NCLBUTTONUP message Pin
Maddie from Dartford8-Aug-07 23:19
Maddie from Dartford8-Aug-07 23:19 
AnswerRe: Form WM_NCLBUTTONUP message Pin
Luc Pattyn9-Aug-07 0:37
sitebuilderLuc Pattyn9-Aug-07 0:37 
Hi,

if nothing else works for you, you can always override the WndProc method;
here is an example from my CodeRescue article for getting hotkey messages:

// We must intercept the WM_HOTKEY message and check lParam !
protected override void WndProc(ref Message m) {
	if(m.Msg==0x0312) {	// WM_HOTKEY (winuser.h)
		int lParam=(int)m.LParam;
		if(lParam==0x00710002) RescueCode();		// CTRL+F2
	}
	base.WndProc(ref m);
}


Smile | :)


Luc Pattyn [Forum Guidelines] [My Articles]


this weeks tips:
- make Visual display line numbers: Tools/Options/TextEditor/...
- show exceptions with ToString() to see all information
- before you ask a question here, search CodeProject, then Google


QuestionUser Interface, setup project. Pin
steve_rm8-Aug-07 23:18
steve_rm8-Aug-07 23:18 
AnswerRe: User Interface, setup project. Pin
Christian Graus8-Aug-07 23:26
protectorChristian Graus8-Aug-07 23:26 
QuestionRe: User Interface, setup project. Pin
steve_rm9-Aug-07 0:26
steve_rm9-Aug-07 0:26 
AnswerRe: User Interface, setup project. Pin
originSH9-Aug-07 1:11
originSH9-Aug-07 1:11 
QuestionEncryption Pin
sangramkp8-Aug-07 23:17
sangramkp8-Aug-07 23:17 
AnswerRe: Encryption Pin
Talal Sultan8-Aug-07 23:26
Talal Sultan8-Aug-07 23:26 
QuestionRe: Encryption Pin
sangramkp8-Aug-07 23:29
sangramkp8-Aug-07 23:29 
AnswerRe: Encryption Pin
Talal Sultan8-Aug-07 23:36
Talal Sultan8-Aug-07 23:36 
AnswerRe: Encryption Pin
Christian Graus8-Aug-07 23:35
protectorChristian Graus8-Aug-07 23:35 
AnswerRe: Encryption Pin
Vasudevan Deepak Kumar9-Aug-07 0:17
Vasudevan Deepak Kumar9-Aug-07 0:17 
QuestionAvailable Domains in Network Pin
stancrm8-Aug-07 23:13
stancrm8-Aug-07 23:13 
AnswerRe: Available Domains in Network Pin
glFrustum8-Aug-07 23:46
glFrustum8-Aug-07 23:46 
QuestionInstalling a windows service on a windows 2003 server Pin
Leia20118-Aug-07 22:50
Leia20118-Aug-07 22:50 
AnswerRe: Installing a windows service on a windows 2003 server Pin
Talal Sultan8-Aug-07 23:22
Talal Sultan8-Aug-07 23:22 
Questionmarkquee in c# Pin
monuSaini8-Aug-07 22:37
monuSaini8-Aug-07 22:37 
AnswerRe: markquee in c# Pin
help as an alias8-Aug-07 23:03
help as an alias8-Aug-07 23:03 
GeneralRe: markquee in c# Pin
monuSaini8-Aug-07 23:06
monuSaini8-Aug-07 23:06 

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.