Skip to content

typo: lable -> label #1722

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<None Include="res\help24.bmp" />
<None Include="res\img_inte_hc.bmp" />
<None Include="res\intellisense.bmp" />
<None Include="res\lable.bmp" />
<None Include="res\label.bmp" />
<None Include="res\menuimages.bmp" />
<None Include="res\menuimages24.bmp" />
<None Include="res\optionsimages.bmp" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ namespace ListViewAfterLabelEditEx
// Determine if the ASCII code is within the valid range of numerical values.
if ( bc[ 0 ] > 47 && bc[ 0 ] < 58 )
{
// Cancel the event and return the lable to its original state.
// Cancel the event and return the label to its original state.
e->CancelEdit = true;

// Display a MessageBox alerting the user that numbers are not allowed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Windows.Forms;
using System.Data;

namespace Lable_Cs
namespace Label_Cs
{
/// <summary>
/// Summary description for Form1.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private void MyListView_AfterLabelEdit(object sender, System.Windows.Forms.Label
// Determine if the ASCII code is within the valid range of numerical values.
if(bc[0] > 47 && bc[0] < 58)
{
// Cancel the event and return the lable to its original state.
// Cancel the event and return the label to its original state.
e.CancelEdit = true;
// Display a MessageBox alerting the user that numbers are not allowed.
MessageBox.Show ("The text for the item cannot contain numerical values.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Namespace ListViewAfterLabelEditEx

' Determine if the ASCII code is within the valid range of numerical values.
If bc(0) > 47 And bc(0) < 58 Then
' Cancel the event and return the lable to its original state.
' Cancel the event and return the label to its original state.
e.CancelEdit = True
' Display a MessageBox alerting the user that numbers are not allowed.
MessageBox.Show("The text for the item cannot contain numerical values.")
Expand Down