Click here to Skip to main content
Click here to Skip to main content

A C# IP Address Control

By , 28 Apr 2008
 

Screenshot - TestIPAddressControl.png

Introduction

Why didn't Microsoft include an IP address control in the stock toolbox for Visual Studio .NET? I needed something similar to the MFC CIPAddressCtrl class in a C# application recently, and was forced to roll my own. I tried to mimic the behavior of CIPAddressCtrl using C# here, and hopefully I've succeeded.

Background

IPAddressControl is really a composite UserControl that aggregates four specialized TextBox controls of type FieldCtrl and three specialized Controls of type DotCtrl. Here's a picture:

Screenshot - close_up.gif

The FieldCtrls do some validation and keyboard filtering, in addition to standard TextBox behavior. The DotCtrls do nothing but draw a dot.

Using the Code

Once the library containing IPAddressControl (IPAddressControlLib.dll) is built, add the control to the Toolbox in Visual Studio. From the Toolbox, just drag the control onto a form and you're ready to go. The interface to IPAddressControl is very simple.

Public Instance Properties

  • AutoHeight: gets or sets a value indicating whether the control is automatically sized vertically according to the current font and border. The default value is true.
  • Blank: gets a value indicating whether all of the fields in the control are empty.
  • BorderStyle: gets or sets the border style of the control. The default value is BorderStyle.Fixed3D.
  • ReadOnly: gets or sets a value indicating if the control is read-only.

Public Instance Methods

  • Clear: Clears the contents of the control.
  • GetAddressBytes: Returns an array of bytes representing the contents of the fields, index 0 being the leftmost field.
  • SetAddressBytes: sets the values of the fields using an array of bytes, index 0 being the leftmost field.
  • SetFieldFocus: sets the keyboard focus to the specified field in the control.
  • SetFieldRange: sets the lower and higher range of a specified field in the control.

The above properties and methods are in addition to the stock properties and methods of UserControl. Stock properties such as Text, Enabled, and Font -- as well as stock methods such as ToString() -- work as expected. The client code can register a handler for the public event, FieldChangedEvent, to be notified when any text in the fields of the control changes.

Note that Text and ToString() may not return the same value. If there are any empty fields in the control, Text will return a value that will reflect the empty fields. ToString() will fill in any empty fields with that field's RangeLower value. Also, if you are using the control to create an IPAddress, you can easily do so using this control's GetAddressBytes() method:

IPAddress ipAddress = new IPAddress( ipAddressControl.GetAddressBytes() );

History

  • 27 Apr 2008
    • Added propagation of KeyDown, KeyUp, and PreviewKeyDown events. Keys.Enter and Keys.Return will now propagate a KeyPress event.
  • 23 Oct 2007
    • ReadOnly should now really be read-only. Thanks to t_suzuki for reporting this bug.
  • 27 Sep 2007
    • Added proper event propagation for focus, keypress, and some mouse events.
    • Added AllowInternalTab and AnyBlank properties.
    • Removed superfluous code.
    • Removed a potential resource leak when calculating text size and added a null check for SetAddressBytes().
    • Compliant with FxCop 1.35.
  • 13 Jun 2007
    • Text set in design mode is persisted.
    • Removed override of AutoSize. Use AutoHeight instead.
    • [VS05] Modified size calculations to conserve horizontal space.
  • 6 Mar 2007
    • Now checks for null when parsing incoming text.
  • 21 Feb 2007
    • Added handling of [Backspace] across fields. Thanks to Antony for reporting this bug.
    • Added better handling of [Delete], and new handlers for [Home] and [End].
    • [VS05] Modified the MinimumSize property of DotControl to tighten up the spacing.
  • 5 May 2006
    • [VS05] Added Baseline to the SnapLines collection for the ControlDesigner class. Made the Text property browsable in design mode. Fixed the control sizing bug when large fonts are used.
  • 13 Oct 2005
    • Compliant with FxCop 1.32.
  • 17 Sep 2005
    • Enhanced to support Windows XP visual styles. Thanks to Carlos for requesting this.
  • 3 Aug 2005
    • Bug fix for Focused property. Thanks to Mario for reporting this.
  • 22 Mar 2005
    • Added a call to OnTextChanged() for the control when the text of any field changes. Thanks to Bertrand for pointing that out.
  • 6 Feb 2005
    • Added missing key handlers. Thanks to Norm and Ed for the heads-up on missing key handlers.
    • Added sizing.
    • Added ReadOnly property.
    • Non-standard color choices now render properly.
    • Added an event to notify clients of text change.
  • 20 Jan 2005 - Initial release.

License

This article, along with any associated source code and files, is licensed under The MIT License

About the Author

mid=5741
Canada Canada
Member
No Biography provided

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.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4membermaryamtooty18 May '13 - 7:50 
works well.
QuestionNot working in VS2010 (.net framework 4.0)memberenzo.faffa24 Feb '12 - 6:18 
When adding the built .dll as reference, I can navigate it by object explorer but it's impossible to compile any IPAddressControlLib object and no more dll exploration is possible. It seem that after compile every reference to IPAddressControlLib is lost.
AnswerRe: Not working in VS2010 (.net framework 4.0)memberMember 993792918 Apr '13 - 9:16 
I think that i faced the same issue but i found a solution to mine if you're targeting .net framework 4.0 CLIENT PROFILE than change if to .net framework 4.0 that should be it well it did solve the issue for me
QuestionAdding [VS03] to the download link textmemberAli Fakoor19 Oct '11 - 21:31 
If possible please add the [VS03] tag to the two first items in the download section (I know they are in chronological order and the file name begins the VS03 but it is much appreciated.).
Generalthe values are working wrong in increasingmemberRapunzo13 Aug '10 - 23:40 
when I want to increase 192.168.150.25 for 1 step it being 193.168.150.25. I thing there is something wrong?
does anyone has any fix for this situation?
QuestionMAC address for an encore???membersysop@HAL9K.com17 Mar '10 - 3:37 
Anybody implemented this for MAC addresses, e.g. "aa-bb-cc-11-22-33" etc.
Generaldisplay ordinary textbox shortcut menumemberpillesoft19 Nov '09 - 2:32 
thanks for this control!
but i have one issue. i would like to copy the contents (ip address) of that control. it is not possible with right click, which is default for the textbox.
so, i would like to have the shortcut menu with Undo, Cut, Copy, Paste, Delete, Select All
 
is it possible to implement this?
Ivan
General[HOWTO] Adding this control or another to VS ToolboxmemberVincent DUVERNET (Nolmë Informatique)2 Aug '09 - 22:32 
Hi,
 
it's just a comment for people who want's to use graphical interface of VS.
 
Go to menu 'Tools'
Select 'Choose Toolbox Items'

 
Under tab '.NET Framework Components'
Click on button 'Browse'
 
Select 'IPAddressControlLib.dll' in the Release directory of the project.
 
You'll now have in the toolbox a new entry at the top called : IPAddressControlLib Components
 
++
Vincent
GeneralMDI Child Bugmembermikerileyii21 May '09 - 5:50 
I've found a problem using this control in a form set as an MDI Child.
 
public frmMDIParent()
{
InitializeComponent();
frmContainingIPControl newForm = new frmContainingIPControl();
newForm.MdiParent = this;
newForm.Show();
}
 
When the form is rendered, the IP Control is not visible. If I comment out newForm.MdiParen = this; the control is visible.
 
The workaround I did is instantiating the form in the MDI parent form's Activated event. Like this:
 
private void frmMDIParent_Activated(object sender, EventArgs e)
{
frmContainingIPControl newForm = new frmContainingIPControl();
newForm.MdiParent = this;
newForm.Show();
}
 
Anyone know why it does not show up in the first code example?
GeneralWrong layout in Korean XPmemberdisore29 Apr '09 - 0:08 
Hi!
 
Thanks for a really great control!
 
I have however noticed strange behavior on Korean Windows XP Professional. The fourth IP block is merely visible. I've uploaded a snapshot here.
 
Best regards,
Disore
 
Why is it drug addicts and computer afficionados are both called users?
--Clifford Stoll

GeneralGreat!memberjose_camacho25 Mar '09 - 21:28 
Thank you very much. I wonder why this MS-guys did not include such a control in the .NET. Maybe it has something to do with licenses and patents-rights.
 
Or maybe they just want us to do some work ... Big Grin | :-D
 

José
GeneralProblem with ShortCutsmemberStefanFrank11 Feb '09 - 6:14 
I've encountered a problem when using the IPAddressControl together with other simple controls like labels or comboboxes which have short cuts. You can reach all controls via their short cuts if other controls have the focus. If the IPAddressControl has the focus, the other controls cannot be reached via their short cuts, the focus remains in the IPAddressControl instead.
Analyzing the source code doesn't give me the deciding hint, any ideas to solve this problem?
GeneralRe: Problem with ShortCutsmembermid=574111 Feb '09 - 8:44 
Have you tried the version that is available at http://ipaddresscontrollib.googlecode.com[^]?
 
If that version doesn't work, would you please create a small project demonstrating the problem and attach it to a new issue at the Google Code site[^]?
GeneralRe: Problem with ShortCutsmemberStefanFrank23 Mar '09 - 4:17 
It seems to be a special problem in our application, which is a C++/C# mixed mode one. In a native C# application I cannot reproduce the problem. So I think we can close this issue.
GeneralThanksmemberDr.Luiji28 Jan '09 - 21:53 
Many thanks, you save me some hours of work.
have a 5.
 
Dr.Luiji
 
Trust and you'll be trusted.
 
Try iPhone UI [^] a new fresh face for your Windows Mobile, here on Code Project.

Generalgood articlememberDonsw17 Jan '09 - 17:30 
The new 2008 has a masktextbox and it still does not have an Ip mask. good work. Smile | :)
GeneralSmall request with the auto correction of too big valuemembersmudge17 Nov '08 - 3:17 
When you enter a too big value in a field, the control make an auto correction of the value to 255.
After this auto correction, the cursor is placed on the left side of the value and it's no more possible to use the key point to go to the next field.
 
Sorry for my English, I hope you understand what I mean.
 
Thank you for your work...
GeneralThank you !membergaby_la_star12 Oct '08 - 1:40 
Your control is simply the best one of all the IP controls I tried, including those I've developped myself.
Even better than the native SysIPAddress32 control because I couldn't get it to behave properly in VS.
 
I have some suggestions :
- Property .Text of the control : replace blanks by "0" (in order to avoid we get "192..." for example). Really easy to do;
- There is some kind of little flickering when we move the parent window form. I couldn't get rid of it, I don't know where does it come from.
 
Thank you for your great control !
GeneralProblem under Vista with larger font sizesmemberStefanFrank26 Jun '08 - 0:08 
It seems that under Windows Vista the IPAddressControl doesn't calculate the correct width if the user changes the default font size to a larger one via the control panel.
The last part of the IP address cannot be edited and is not visible in this case.
Any ideas to solve this problem?
GeneralRe: Problem under Vista with larger font sizesmemberMichael Chapman26 Jun '08 - 3:25 
I don't have Vista, but I do not see any font change issues on XP. Do you get the same behavior using the demo project attached to this article? I just wrote a small application where I can change the font of just the Form, and then just the IPAddressControl. In both instances, the control was rendered according to the font size with no clipping of any field.
 
Henry David Thoreau wrote:
Beware of all enterprises that require new clothes.


GeneralRe: Problem under Vista with larger font sizesmemberStefanFrank26 Jun '08 - 3:33 
The demo attached with this article produces the same problem.
With larger font sizes I meant other DPI settings in the control panel, especially 120 DPI.
It's the same effect as mentioned in "Problem with Control and 120DPI" from May 2005.
GeneralRe: Problem under Vista with larger font sizesmemberMichael Chapman26 Jun '08 - 5:08 
OK, now I see what you're saying. It looks like it could be related to the AutoScaleMode property. The form defaults to AutoScaleMode.Font. If I use AutoScaleMode.Dpi within the control, the control (with a little modification) is sized so that all fields are visible. Are you using VS2005? If so, would you mind grabbing this dll and seeing if it's a step in the right direction? All fields are there, but the control itself is a little wider than I think it should be.
 
Henry David Thoreau wrote:
Beware of all enterprises that require new clothes.

modified on Thursday, June 26, 2008 5:36 PM

GeneralRe: Problem under Vista with larger font sizesmemberStefanFrank26 Jun '08 - 5:23 
Yes, all parts of the IP address are visible now. The control itself is larger as normal as you mentioned above. It ends outside the form's right edge.
General[Message Deleted]memberMichael Chapman26 Jun '08 - 9:37 

GeneralRe: Problem under Vista with larger font sizesmemberStefanFrank26 Jun '08 - 21:30 
Perfect! Well done, you did a great job. Thank you very much for your effort.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 28 Apr 2008
Article Copyright 2005 by mid=5741
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid