Click here to Skip to main content
15,904,297 members
Home / Discussions / C#
   

C#

 
Questionhow not to use proxy cashe. Pin
yu-yu19-Oct-04 0:39
yu-yu19-Oct-04 0:39 
GeneralAdding a checkbox column Pin
scotlandc18-Oct-04 23:43
scotlandc18-Oct-04 23:43 
GeneralRe: Adding a checkbox column Pin
Heath Stewart19-Oct-04 7:37
protectorHeath Stewart19-Oct-04 7:37 
GeneralRe: Adding a checkbox column Pin
scotlandc21-Oct-04 0:13
scotlandc21-Oct-04 0:13 
GeneralKeyUp Event Pin
exhaulted18-Oct-04 23:03
exhaulted18-Oct-04 23:03 
GeneralRe: KeyUp Event Pin
Stefan Troschuetz18-Oct-04 23:50
Stefan Troschuetz18-Oct-04 23:50 
GeneralRe: KeyUp Event Pin
exhaulted19-Oct-04 4:46
exhaulted19-Oct-04 4:46 
GeneralRe: KeyUp Event Pin
Stefan Troschuetz19-Oct-04 4:59
Stefan Troschuetz19-Oct-04 4:59 
It's not as easy as with the Keypressed event but also you can check for group of characters. For example:
// Determine whether the keystroke is a number from the top of the keyboard.
    if (e.KeyCode < Keys.D0 || e.KeyCode > Keys.D9)
    {
        // Determine whether the keystroke is a number from the keypad.
        if (e.KeyCode < Keys.NumPad0 || e.KeyCode > Keys.NumPad9)
        {

Take a look at the link I provided in my previous post.







www.troschuetz.de
GeneralRe: KeyUp Event Pin
exhaulted19-Oct-04 5:37
exhaulted19-Oct-04 5:37 
GeneralRe: KeyUp Event Pin
Stefan Troschuetz19-Oct-04 9:19
Stefan Troschuetz19-Oct-04 9:19 
GeneralPlease explain code! Pin
Brakanjan18-Oct-04 23:00
Brakanjan18-Oct-04 23:00 
GeneralRe: Please explain code! Pin
J4amieC18-Oct-04 23:43
J4amieC18-Oct-04 23:43 
QuestionHow can i create a handle for mouse events... Pin
Kiran Satish18-Oct-04 20:52
Kiran Satish18-Oct-04 20:52 
AnswerRe: How can i create a handle for mouse events... Pin
exhaulted19-Oct-04 4:50
exhaulted19-Oct-04 4:50 
GeneralRe: How can i create a handle for mouse events... Pin
Kiran Satish19-Oct-04 6:49
Kiran Satish19-Oct-04 6:49 
GeneralRe: How can i create a handle for mouse events... Pin
Kiran Satish19-Oct-04 13:45
Kiran Satish19-Oct-04 13:45 
GeneralRe: Ntier app Pin
Colin Angus Mackay18-Oct-04 20:46
Colin Angus Mackay18-Oct-04 20:46 
GeneralRe: Ntier app Pin
StephenMcAllister19-Oct-04 9:43
StephenMcAllister19-Oct-04 9:43 
GeneralRe: Ntier app Pin
Colin Angus Mackay19-Oct-04 10:54
Colin Angus Mackay19-Oct-04 10:54 
GeneralRe: Ntier app Pin
StephenMcAllister19-Oct-04 16:25
StephenMcAllister19-Oct-04 16:25 
GeneralLaunching a program by double clicking file, file loading problem Pin
Azrael_ImAFingDemon18-Oct-04 18:48
Azrael_ImAFingDemon18-Oct-04 18:48 
GeneralRe: Launching a program by double clicking file, file loading problem Pin
Yulianto.18-Oct-04 19:20
Yulianto.18-Oct-04 19:20 
GeneralRe: Launching a program by double clicking file, file loading problem Pin
sreejith ss nair18-Oct-04 19:23
sreejith ss nair18-Oct-04 19:23 
GeneralRe: Launching a program by double clicking file, file loading problem Pin
Azrael_ImAFingDemon18-Oct-04 19:49
Azrael_ImAFingDemon18-Oct-04 19:49 
GeneralRe: Launching a program by double clicking file, file loading problem Pin
Stefan Troschuetz18-Oct-04 22:19
Stefan Troschuetz18-Oct-04 22:19 

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.