banner

[Rule] Rules  [Home] Main Forum  [Portal] Portal  
[Members] Member Listing  [Statistics] Statistics  [Search] Search  [Reading Room] Reading Room 
[Register] Register  
[Login] Loginhttp  | https  ]
 
Forum Index Thảo luận hệ điều hành Windows C#  XML
  [Programming]   C# 05/10/2007 12:23:31 (+0700) | #1 | 88822
helomoto
Member

[Minus]    0    [Plus]
Joined: 14/09/2007 00:21:59
Messages: 1
Offline
[Profile] [PM]
Em muốn kiểm tra ràng buộc người dùng chỉ nhập kiểu số cho textbox ở sự kiện keypress thì làm sao a.Khi nhấn phím bất kì không phải kiểu số thì báo lỗi và bắt nhập lai.Thanks
[Up] [Print Copy]
  [Question]   Re: C# 08/10/2007 06:02:13 (+0700) | #2 | 89269
TupinWar
Member

[Minus]    0    [Plus]
Joined: 21/09/2005 02:19:21
Messages: 9
Offline
[Profile] [PM]
Code:
// Boolean flag used to determine when a character other than a number is entered.
private bool nonNumberEntered = false;

// Handle the KeyDown event to determine the type of character entered into the control.
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
    // Initialize the flag to false.
    nonNumberEntered = false;

    // 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)
        {
            // Determine whether the keystroke is a backspace.
            if(e.KeyCode != Keys.Back)
            {
                // A non-numerical keystroke was pressed.
                // Set the flag to true and evaluate in KeyPress event.
                nonNumberEntered = true;
            }
        }
    }
}

// This event occurs after the KeyDown event and can be used to prevent
// characters from entering the control.
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
    // Check for the flag being set in the KeyDown event.
    if (nonNumberEntered == true)
    {
        // Stop the character from being entered into the control since it is non-numerical.
        e.Handled = true;
    }
}


Have fun !
[Up] [Print Copy]
  [Question]   C# 20/10/2007 06:55:06 (+0700) | #3 | 91722
nhc1987
Member

[Minus]    0    [Plus]
Joined: 19/10/2007 13:35:23
Messages: 2
Offline
[Profile] [PM]

helomoto wrote:
Em muốn kiểm tra ràng buộc người dùng chỉ nhập kiểu số cho textbox ở sự kiện keypress thì làm sao a.Khi nhấn phím bất kì không phải kiểu số thì báo lỗi và bắt nhập lai.Thanks 


Bạn tạo CustomControl, override sự kiện OnKeyPress.
Code:
class NumericTextBox : TextBox
{
        protected override void OnKeyPress(KeyPressEventArgs e)
        {
            if (!Char.IsControl(e.KeyChar) && !Char.IsNumber(e.KeyChar))
                e.Handled = true;
        }
}


P/s: không nên báo lỗi ở đây. Chỉ cần không cho user nhập sai kiểu dữ liệu là được rồi. smilie
[Up] [Print Copy]
  [Question]   Re: C# 26/10/2007 21:53:57 (+0700) | #4 | 93137
[Avatar]
haipt
Member

[Minus]    0    [Plus]
Joined: 20/08/2004 19:48:44
Messages: 165
Location: Hải phòng
Offline
[Profile] [PM] [WWW]
smilie Trời gì dài dữ vậy, chặn validating.. --> chỉ 1 dòng code thôi mà
[Up] [Print Copy]
  [Question]   C# 26/10/2007 22:09:28 (+0700) | #5 | 93146
[Avatar]
ITSHVA
Member

[Minus]    0    [Plus]
Joined: 22/10/2007 09:39:54
Messages: 20
Location: BIOS
Offline
[Profile] [PM]

helomoto wrote:
Em muốn kiểm tra ràng buộc người dùng chỉ nhập kiểu số cho textbox ở sự kiện keypress thì làm sao a.Khi nhấn phím bất kì không phải kiểu số thì báo lỗi và bắt nhập lai.Thanks 

Bạn học C# thì nên tham khảo thêm ở website này: http://www.codeproject.com/index.asp
Done is better than perfect
[Up] [Print Copy]
[digg] [delicious] [google] [yahoo] [technorati] [reddit] [stumbleupon]
Go to: 
 Users currently in here 
1 Anonymous

Powered by JForum - Extended by HVAOnline
 hvaonline.net  |  hvaforum.net  |  hvazone.net  |  hvanews.net  |  vnhacker.org
1999 - 2013 © v2012|0504|218|