Click here to Skip to main content
15,890,557 members
Home / Discussions / C#
   

C#

 
GeneralRe: removing the last character of textbox Pin
Christian Graus5-Oct-09 20:30
protectorChristian Graus5-Oct-09 20:30 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:41
NarendraSinghJTV6-Oct-09 1:41 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:26
NarendraSinghJTV6-Oct-09 1:26 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:28
NarendraSinghJTV6-Oct-09 1:28 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:45
NarendraSinghJTV6-Oct-09 1:45 
GeneralRe: removing the last character of textbox Pin
PIEBALDconsult6-Oct-09 4:58
mvePIEBALDconsult6-Oct-09 4:58 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 18:43
NarendraSinghJTV6-Oct-09 18:43 
AnswerRe: removing the last character of textbox Pin
AhmedMasum5-Oct-09 22:37
AhmedMasum5-Oct-09 22:37 
Try the following:

private void button1_Click(object sender, EventArgs e)
{
String s = textBox1.Text;
s = s.Remove(s.Length - 1);
textBox1.Text = s;
}

I think you got the solution.
GeneralRe: removing the last character of textbox Pin
Christian Graus6-Oct-09 0:02
protectorChristian Graus6-Oct-09 0:02 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:31
NarendraSinghJTV6-Oct-09 1:31 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 1:34
NarendraSinghJTV6-Oct-09 1:34 
GeneralRe: removing the last character of textbox Pin
AhmedMasum6-Oct-09 16:17
AhmedMasum6-Oct-09 16:17 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV6-Oct-09 18:18
NarendraSinghJTV6-Oct-09 18:18 
GeneralRe: removing the last character of textbox Pin
NarendraSinghJTV8-Oct-09 23:59
NarendraSinghJTV8-Oct-09 23:59 
QuestionPointer in C# .NET (in Express2008) Pin
det55-Oct-09 18:08
det55-Oct-09 18:08 
AnswerRe: Pointer in C# .NET (in Express2008) Pin
Christian Graus5-Oct-09 18:24
protectorChristian Graus5-Oct-09 18:24 
AnswerRe: Pointer in C# .NET (in Express2008) Pin
stancrm5-Oct-09 18:36
stancrm5-Oct-09 18:36 
QuestionHow to read table from MS_WORD using C# Pin
Yognand5-Oct-09 18:04
Yognand5-Oct-09 18:04 
AnswerRe: How to read table from MS_WORD using C# Pin
Christian Graus5-Oct-09 18:25
protectorChristian Graus5-Oct-09 18:25 
Questionwhy do Update method of SqldataAdapter not work? Pin
Nguyen Hong Lam5-Oct-09 17:55
Nguyen Hong Lam5-Oct-09 17:55 
AnswerRe: why do Update method of SqldataAdapter not work? Pin
Christian Graus5-Oct-09 18:25
protectorChristian Graus5-Oct-09 18:25 
GeneralRe: why do Update method of SqldataAdapter not work? Pin
PIEBALDconsult6-Oct-09 5:00
mvePIEBALDconsult6-Oct-09 5:00 
QuestionMRU Button List in C# Pin
Alisaunder5-Oct-09 17:54
Alisaunder5-Oct-09 17:54 
AnswerRe: MRU Button List in C# Pin
Christian Graus5-Oct-09 18:26
protectorChristian Graus5-Oct-09 18:26 
GeneralRe: MRU Button List in C# Pin
Alisaunder6-Oct-09 3:45
Alisaunder6-Oct-09 3:45 

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.