Click here to Skip to main content
15,907,281 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to continue a process with a button Pin
Parwej Ahamad4-Mar-08 16:50
professionalParwej Ahamad4-Mar-08 16:50 
AnswerRe: How to continue a process with a button Pin
Christian Graus4-Mar-08 16:55
protectorChristian Graus4-Mar-08 16:55 
AnswerRe: How to continue a process with a button Pin
Xmen Real 4-Mar-08 17:10
professional Xmen Real 4-Mar-08 17:10 
GeneralRe: How to continue a process with a button Pin
MAW304-Mar-08 17:32
MAW304-Mar-08 17:32 
GeneralRe: How to continue a process with a button Pin
Xmen Real 4-Mar-08 17:33
professional Xmen Real 4-Mar-08 17:33 
GeneralRe: How to continue a process with a button Pin
Christian Graus4-Mar-08 17:39
protectorChristian Graus4-Mar-08 17:39 
GeneralRe: How to continue a process with a button Pin
Xmen Real 4-Mar-08 17:42
professional Xmen Real 4-Mar-08 17:42 
Generalc# need help with using TextBox Pin
VyTrx4-Mar-08 15:28
VyTrx4-Mar-08 15:28 
Given:
a textBox1 with a key event
typing in a string and a unicode(i.e letter "a with circumflex") to be inserted whenever a letter "a" is pressed

problem:
after it inserting the letter, it added an extra "a" at the front
and the cursor does not stay at inserted-position. It start at the front
instead.

Expect to be:
get rid of the extra letter and move the keep the cursor at where it perform the inserting process.
I used the remove() but didn't work
my code is as follow. Please help me.

private void keyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
int curPos = textBox1.SelectionStart;
if(e.KeyValue.ToString()=="65")
{ char[] unicode = {'\u00E2'};
textBox1.Text = textBox1.Text.Insert(cur,new string(unicode));
}
}

VyT
GeneralRe: c# need help with using TextBox Pin
Christian Graus4-Mar-08 16:04
protectorChristian Graus4-Mar-08 16:04 
QuestionPossible to embed a string in an application that can be changed? Pin
Jacob Dixon4-Mar-08 14:30
Jacob Dixon4-Mar-08 14:30 
AnswerRe: Possible to embed a string in an application that can be changed? Pin
Christian Graus4-Mar-08 14:42
protectorChristian Graus4-Mar-08 14:42 
GeneralRe: Possible to embed a string in an application that can be changed? Pin
Jacob Dixon4-Mar-08 14:45
Jacob Dixon4-Mar-08 14:45 
GeneralRe: Possible to embed a string in an application that can be changed? Pin
Christian Graus4-Mar-08 16:02
protectorChristian Graus4-Mar-08 16:02 
AnswerRe: Possible to embed a string in an application that can be changed? Pin
darkelv4-Mar-08 14:49
darkelv4-Mar-08 14:49 
GeneralRe: Possible to embed a string in an application that can be changed? Pin
Jacob Dixon4-Mar-08 15:04
Jacob Dixon4-Mar-08 15:04 
GeneralRe: Possible to embed a string in an application that can be changed? Pin
darkelv4-Mar-08 15:35
darkelv4-Mar-08 15:35 
GeneralRe: Possible to embed a string in an application that can be changed? Pin
Jacob Dixon4-Mar-08 16:23
Jacob Dixon4-Mar-08 16:23 
AnswerRe: Possible to embed a string in an application that can be changed? Pin
Vikram A Punathambekar4-Mar-08 18:13
Vikram A Punathambekar4-Mar-08 18:13 
QuestionSurvey for C# Programmers for my High School Research Report [modified] Pin
Thomas Stockwell4-Mar-08 13:25
professionalThomas Stockwell4-Mar-08 13:25 
GeneralRe: Survey for VC# Programmers for my High School Research Report Pin
PIEBALDconsult4-Mar-08 13:42
mvePIEBALDconsult4-Mar-08 13:42 
GeneralRe: Survey for VC# Programmers for my High School Research Report Pin
Thomas Stockwell4-Mar-08 14:43
professionalThomas Stockwell4-Mar-08 14:43 
GeneralRe: Survey for VC# Programmers for my High School Research Report Pin
PIEBALDconsult4-Mar-08 15:35
mvePIEBALDconsult4-Mar-08 15:35 
GeneralRe: Survey for VC# Programmers for my High School Research Report Pin
Thomas Stockwell5-Mar-08 2:01
professionalThomas Stockwell5-Mar-08 2:01 
GeneralRe: Survey for C# Programmers for my High School Research Report Pin
PIEBALDconsult5-Mar-08 4:09
mvePIEBALDconsult5-Mar-08 4:09 
GeneralImporting a global variable from a C DLL Pin
Luca Leonardo Scorcia4-Mar-08 12:02
professionalLuca Leonardo Scorcia4-Mar-08 12:02 

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.