Click here to Skip to main content
Licence 
First Posted 18 Nov 2004
Views 97,258
Downloads 481
Bookmarked 20 times

Automatically put decimal for currency format in TextBox when typing

By gitansu | 18 Nov 2004
Automatically put decimal for currency format in TextBox when typing.
9 votes, 90.0%
1

2

3

4
1 vote, 10.0%
5
1.36/5 - 10 votes
μ 1.36, σa 2.21 [?]

Introduction

This is a cool code to use TextBox for entering currency data. It will automatically add decimal when typing on the TextBox. The backspace and delete key is used to delete a number from the TextBox.

The source code is:

string str="";
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
  int KeyCode = e.KeyValue;

  if(!IsNumeric(KeyCode))
  {
    e.Handled=true;
    return;
  }
  else
  {
    e.Handled=true;
  }
  if(((KeyCode==8)||(KeyCode==46))&&(str.Length>0))
  {
    str = str.Substring(0,str.Length-1);
  }
  else if(!((KeyCode==8)||(KeyCode==46)))
  {
    str = str+Convert.ToChar(KeyCode);
  }
  if(str.Length==0)
  {
    textBox1.Text = "";
  }
  if(str.Length==1)
  {
    textBox1.Text = "0.0"+str;
  }
  else if(str.Length==2)
  {
    textBox1.Text = "0."+str;
  }
  else if(str.Length>2)
  {
    textBox1.Text = str.Substring(0,str.Length-2)+"."+
                    str.Substring(str.Length-2);
  }
}

private bool IsNumeric(int Val)
{
  return ((Val>=48 && Val<=57) || (Val == 8) ||(Val==46));
}

private void textBox1_KeyPress(object sender, 
        System.Windows.Forms.KeyPressEventArgs e)
{
  e.Handled=true;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

gitansu



India India

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralACTIVATE NUM-LOCK PAD. PinmemberMember 33216379:35 28 Dec '08  
GeneralRe: ACTIVATE NUM-LOCK PAD. PinmemberDavidMills025:08 27 Nov '10  
GeneralCurrency textbox Pinmemberrik rik grinPeace16:31 29 Jul '08  
GeneralRe: Currency textbox Pinmemberrik rik grinPeace20:35 30 Jul '08  
GeneralVB.net version Pinmemberfelic10117:31 5 Sep '07  
GeneralPasting PinmemberPeter Ritchie5:36 5 Feb '06  
GeneralWorks Great PinmemberTLdraw4:00 9 Jun '05  
GeneralRe: Javascript PinsussDave Gray11:57 19 Nov '04  
GeneralRe: Javascript PinmemberBob Aman12:42 19 Nov '04  
GeneralRe: Javascript PinmemberBob Aman12:43 19 Nov '04  
Questionand what about non US values ? Pinmembermcarbenay3:03 19 Nov '04  
GeneralGRRR>>> Pinmembertom_dx14:47 18 Nov '04  
GeneralRe: GRRR>>> PinsussAnonymous17:02 18 Nov '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 18 Nov 2004
Article Copyright 2004 by gitansu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid