Click here to Skip to main content
15,918,742 members
Home / Discussions / C#
   

C#

 
QuestionHow to use ^ in C#? Pin
Joplinazz27-Feb-08 13:53
Joplinazz27-Feb-08 13:53 
AnswerRe: How to use ^ in C#? Pin
Anthony Mushrow27-Feb-08 13:58
professionalAnthony Mushrow27-Feb-08 13:58 
GeneralRe: How to use ^ in C#? Pin
Joplinazz27-Feb-08 14:24
Joplinazz27-Feb-08 14:24 
GeneralRe: How to use ^ in C#? Pin
Guffa27-Feb-08 14:26
Guffa27-Feb-08 14:26 
JokeRe: How to use ^ in C#? Pin
Jammer28-Feb-08 13:35
Jammer28-Feb-08 13:35 
AnswerAdditional Edification Pin
Ennis Ray Lynch, Jr.27-Feb-08 16:54
Ennis Ray Lynch, Jr.27-Feb-08 16:54 
GeneralSaving DataSet Information and then retrieving it [modified] Pin
ConfusedProgger27-Feb-08 13:20
ConfusedProgger27-Feb-08 13:20 
GeneralFXCop Help Pin
Jammer27-Feb-08 13:07
Jammer27-Feb-08 13:07 
GeneralRe: FXCop Help Pin
Vikram A Punathambekar27-Feb-08 18:25
Vikram A Punathambekar27-Feb-08 18:25 
GeneralRe: FXCop Help Pin
Jammer28-Feb-08 9:18
Jammer28-Feb-08 9:18 
QuestionHow to assign a string value to a boolean cell in a datagridview? Pin
Kristhian Herrera27-Feb-08 12:29
Kristhian Herrera27-Feb-08 12:29 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Xmen Real 27-Feb-08 14:36
professional Xmen Real 27-Feb-08 14:36 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Kristhian Herrera27-Feb-08 14:55
Kristhian Herrera27-Feb-08 14:55 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Xmen Real 27-Feb-08 14:59
professional Xmen Real 27-Feb-08 14:59 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Kristhian Herrera27-Feb-08 15:05
Kristhian Herrera27-Feb-08 15:05 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Xmen Real 27-Feb-08 15:08
professional Xmen Real 27-Feb-08 15:08 
GeneralRe: How to assign a string value to a boolean cell in a datagridview? Pin
Soumini Ramakrishnan28-Feb-08 20:44
Soumini Ramakrishnan28-Feb-08 20:44 
GeneralHook keyboard key in Webbrowser Pin
ric9427-Feb-08 11:04
ric9427-Feb-08 11:04 
GeneralRe: Hook keyboard key in Webbrowser Pin
Luc Pattyn27-Feb-08 11:34
sitebuilderLuc Pattyn27-Feb-08 11:34 
GeneralRe: Hook keyboard key in Webbrowser Pin
ric9427-Feb-08 20:44
ric9427-Feb-08 20:44 
GeneralRe: Hook keyboard key in Webbrowser Pin
Luc Pattyn27-Feb-08 22:27
sitebuilderLuc Pattyn27-Feb-08 22:27 
GeneralRe: Hook keyboard key in Webbrowser Pin
ric9427-Feb-08 23:19
ric9427-Feb-08 23:19 
GeneralRe: Hook keyboard key in Webbrowser Pin
Luc Pattyn28-Feb-08 2:12
sitebuilderLuc Pattyn28-Feb-08 2:12 
OK, this is what I would do:

- set Form.KeyPreview=true for your Form;
- create a Form.KeyDown handler;
- in that handler if input char is 'ù'
1. send a '@'
2. suppress further processing of 'ù' by setting KeyEventArgs.SuppressKeyPress=true;
and KeyEventArgs.Handled=true;

BTW: what is your keyboard? is it the usual French keyboard? How do you call its layout
(is it AZERTY?).

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

This month's tips:
- before you ask a question here, search CodeProject, then Google;
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get;
- use PRE tags to preserve formatting when showing multi-line code snippets.


GeneralRe: Hook keyboard key in Webbrowser Pin
ric9428-Feb-08 11:07
ric9428-Feb-08 11:07 
GeneralRe: Hook keyboard key in Webbrowser Pin
Luc Pattyn28-Feb-08 11:42
sitebuilderLuc Pattyn28-Feb-08 11:42 

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.