相关推荐
-
WPF仿windows自带ip输入控件
主要功能:1.手动输入验证合法性;2.自动跳转下一格;3.直接粘帖ip赋值;4.检验粘帖数据的合法性;5.去除首位的0,windows系统自带的可以输入00;
-
ip输入控件
ip输入提示 方便搜索。 简单 复用 试试看 下载 新手 over
-
一个自定义IP地址控件
自己定义的ip地址控件,好用 #include "stdafx.h" #include "IPTest.h" #include "IPTestDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CIPTestApp BEGIN_MESSAGE_MAP(CIPTestApp, CWinApp) //{{AFX_MSG_MAP(CIPTestApp) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG ON_COMMAND(ID_HELP, CWinApp::OnHelp) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CIPTestApp construction CIPTestApp::CIPTestApp() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CIPTestApp object CIPTestApp theApp; ///////////////////////////////////////////////////////////////////////////// // CIPTestApp initialization BOOL CIPTestApp::InitInstance() { // Standard initialization // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif CIPTestDlg dlg; m_pMainWnd = &dlg; int nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: Place code here to handle when the dialog is // dismissed with OK } else if (nResponse == IDCANCEL) { // TODO: Place code here to handle when the dialog is // dismissed with Cancel } // Since the dialog has been closed, return FALSE so that we exit the // application, rather than start the application's message pump. return FALSE; }
-
IP地址输入控件(仿照windows的ip输入做的)
windows ip输入是这样的 我的ip输入是这样的,看着一样。 用法:和IPEditText用法一样,settext() gettext()函数即可。 package xxx; import android.content.Context; import android.text.Editable; import android.text.Text
-
VB取多网卡IP、MAC、网关、子网掩码
VB取多网卡IP地址,MAC地址、 子网掩码、网关 还能获取虚拟机的网卡IP地址。
-
vc++IP地址输入框控件_vc控件
vc++IP地址输入框控件 visual c++编写的ip输入框 控件
-
Qt IP输入控件
Qt 本身不带IP输入控件,刚开始使用的代码发现位置调整有问题。最后找到了一个写得很好的代码,加上自己的修改:head_file#include <QFrame> #include <QLineEdit> #include <QIntValidator> //#include "stdint.h" #include <QHBoxLayout> #include <QFont> #include <Q
-
VC编程实现使用IP地址控件显示和设置IP地址
VC编程实现使用IP地址控件显示和设置IP地址,适合初学者
-
c# winForm Ip地址输入控件(反馈修改)
类似windowsIp地址输入框的自定义控件 Bug修正: 1.加上输入的时候智能判断 @trfftrff 2.加上了退格键 @xinyude_yu 使用:未输入数据,tab键和dot键不能使用
-
基于qt平台的ip地址输入控件
说明 qt编写的ip地址输入控件,功能齐全,非常实用,使用提升法集成到自己项目的ui中即可。提供设置ip和获取ip两个接口。具体看代码,比较简单,注释应该比较详细了,下载地址放在文章尾部。 代码 ipinputcontrol.h #ifndef IPINPUTCONTROL_H #define IPINPUTCONTROL_H #include <QWidget> #include <QKeyEvent> #include <QRegExpValidator> QT_
-
Delphi来实现一个IP地址输入控件
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, CommCtrl, StdCtrls; type TIpEdit = class(TEdit) procedure Create...
-
两段代码 老师给的
给一个文本框,只能输入数字、小数点和负号,其他的按键输入将不显示。 1.普通程序代码控制 Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress Dim c As Char ...
-
C#实现的IP地址输入框类 kewords: IP地址框 C# .Net
using System;using System.Collections;using System.ComponentModel;using System.Drawing;using System.Data;using System.Windows.Forms;using System.Text.RegularExpressions;using System.Net;namespace
-
winform之ip地址控件textBox
C# winform 显示编辑ip地址,无需重绘textBox或者重写textBox方法,只需要在原生textBox控件对应事件中实现对应的算法即可。 1、textBox keyUp事件 private void textBoxKeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Back) return; String text = textBoxIP.Text; string[] sub.
-
C# 编写自定义 IP 输入框控件
场景: 做一些网络设备应用时,需要有ip地址的输入,这就需要ip地址输入框控件 思路: 1 重写TextBox 为IpInputBox。 2 重写TextBox为SubIpInputBox 3 一个IpInputBox 添加4个SubIpInputBox 和3个Label 控件图:
7 楼 windmerlin 2011-02-09 14:50
6 楼 mvpzhoulong 2011-02-02 12:54
5 楼 mavinci 2011-02-01 15:52
4 楼 java-boy 2011-01-31 23:32
3 楼 mainlove 2011-01-30 13:22
不多滴
2 楼 iqeq00 2011-01-30 10:36
大家怎么看?
1 楼 iqeq00 2011-01-30 10:35