winform中輸入資料的驗證
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
using CrystalDecisions.CrystalReports.Engine;
namespace CRM.BaseClass
{
class OperateAndValidate
{
BaseOperate boperate = new BaseOperate();//宣告BaseOperate類的一個物件,以呼叫其方法
#region 繫結ComboBox控制元件
///
/// 對ComboBox控制元件進行資料繫結
///
/// SQL語句
/// 表名
/// 資料表中欄位名
/// ComboBox控制元件ID
public void cboxBind(string P_str_sqlstr, string P_str_table, string P_str_tbMember, ComboBox cbox)
{
DataSet myds = boperate.getds(P_str_sqlstr, P_str_table);
cbox.DataSource = myds.Tables[P_str_table];
cbox.DisplayMember = P_str_tbMember;
}
#endregion
#region 驗證輸入字串為數字
///
/// 驗證輸入字串為數字
///
/// 輸入字元
///
public bool validateNum(string P_str_num)
{
return Regex.IsMatch(P_str_num, "^[0-9]*$");
}
#endregion
#region 驗證輸入字串為電話號碼
///
/// 驗證輸入字串為電話號碼
///
/// 輸入字串
///
public bool validatePhone(string P_str_phone)
{
return Regex.IsMatch(P_str_phone, @"\d{3,4}-\d{7,8}");
}
#endregion
#region 驗證輸入字串為傳真號碼
///
/// 驗證輸入字串為傳真號碼
///
/// 輸入字串
///
public bool validateFax(string P_str_fax)
{
return Regex.IsMatch(P_str_fax, @"86-\d{2,3}-\d{7,8}");
}
#endregion
#region 驗證輸入字串為郵政編碼
///
/// 驗證輸入字串為郵政編碼
///
/// 輸入字串
///
public bool validatePostCode(string P_str_postcode)
{
return Regex.IsMatch(P_str_postcode, @"\d{6}");
}
#endregion
#region 驗證輸入字串為E-mail地址
///
/// 驗證輸入字串為E-mail地址
///
/// 輸入字串
///
public bool validateEmail(string P_str_email)
{
return Regex.IsMatch(P_str_email, @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");
}
#endregion
#region 驗證輸入字串為網路地址
///
/// 驗證輸入字串為網路地址
///
/// 輸入字串
///
public bool validateNAddress(string P_str_naddress)
{
return Regex.IsMatch(P_str_naddress, @"http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?");
}
#endregion
#region 自動編號
///
/// 自動編號
///
/// SQL語句
/// 資料表名
/// 資料表欄位
/// 編號前的字串
/// 編號後面的數字
/// TextBox控制元件名
public void autoNum(string P_str_sqlstr,string P_str_table,string P_str_tbColumn,string P_str_codeIndex,string P_str_codeNum,TextBox txt)
{
string P_str_Code = "";
int P_int_Code = 0;
DataSet myds = boperate.getds(P_str_sqlstr,P_str_table);
if (myds.Tables[0].Rows.Count == 0)
{
txt.Text = P_str_codeIndex + P_str_codeNum;
}
else
{
P_str_Code = Convert.ToString(myds.Tables[0].Rows[myds.Tables[0].Rows.Count - 1][P_str_tbColumn]);
P_int_Code = Convert.ToInt32(P_str_Code.Substring(2, 7)) + 1;
P_str_Code = P_str_codeIndex + P_int_Code.ToString();
txt.Text = P_str_Code;
}
}
#endregion
#region 繫結報表
///
/// 繫結報表
///
/// 報表名稱
/// SQL語句
///
public ReportDocument CrystalReports(string P_str_creportName, string P_str_sql)
{
ReportDocument reportDocument = new ReportDocument();
string P_str_creportPath = Application.StartupPath.Substring(0, Application.StartupPath.Substring(0,
Application.StartupPath.LastIndexOf("\\")).LastIndexOf("\\"));
P_str_creportPath += @"\SumManage\CReportFile\" + P_str_creportName;
reportDocument.Load(P_str_creportPath);
reportDocument.DataDefinition.RecordSelectionFormula = P_str_sql;
return reportDocument;
}
#endregion
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-608974/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- lapis的輸入驗證API
- 登入驗證碼生成kaptcha(輸入驗證碼)APT
- 輸入表單驗證
- python中快速驗證輸入的是否為迴文Python
- Laravel Graphql Mutation 時資料驗證及複雜格式資料輸入 (InputObjectType)LaravelObject
- Vue使用antd中input元件去驗證輸入框輸入內容Vue元件
- 完成資料的跨界傳輸與驗證
- Flutter 驗證碼輸入框Flutter
- Flutter 密碼輸入框 驗證碼輸入框Flutter密碼
- Spring Boot中實現輸入引數驗證教程Spring Boot
- 驗證輸入的字串是否為合法日期字串
- MySQL中資料型別的驗證MySql資料型別
- 資料的輸入輸出
- app直播原始碼,登入時輸入驗證碼、簡訊驗證身份APP原始碼
- Web 端 實現 app “輸入驗證碼 ”的效果WebAPP
- 一對一聊天原始碼,驗證碼選擇輸入字母驗證原始碼
- Android自定義方形驗證碼輸入框Android
- 晶片驗證板卡設計資料第225篇:基於XCVU440T的多核處理器多輸入晶片驗證板卡晶片
- Python資料的輸入與輸出Python
- 輸入框前面帶有表單驗證提示的功能
- 輸入驗證碼登入時,send_keys () 報錯
- 03 資料輸入-輸出
- 簡單的資料輸入
- 登入驗證判斷,獲取後臺資料
- Android仿滴滴出行驗證碼輸入框效果Android
- Android View篇之自定義驗證碼輸入框AndroidView
- Flutter 輸入車牌號,驗證碼鍵盤效果Flutter
- 直播app原始碼,驗證方式選擇郵箱驗證時,自動給輸入好的郵箱傳送驗證碼APP原始碼
- 表單資料驗證
- 驗證資料是否存在
- 登入介面:從資料庫中獲取資訊驗證登入(與註冊介面相聯絡)資料庫
- 重新思考資料輸入
- Java中的匯入匯出(自身驗證版)Java
- SQL資料庫開發中的SSIS 延遲驗證方法SQL資料庫
- WPF --- TextBox的輸入校驗
- jsonlint:python的json資料驗證庫JSONPython
- 有關資料驗證的原則
- 使用表單驗證,建立資料驗證層,Ajax 統一返回驗證錯誤資訊
- beego表達資料驗證Go