摘要:
调用c++接口类 public class CarDeviceDll { /*对dll库进行一些初始化*/ [DllImport("IDI.dll")] public static extern int Init_IDI(string IP, int port); [DllImport("IDI.dll")] public static extern int Connect_IDI(string IP, int port); /*由客户端定时向服务器发送命令,检测连接状态*/ [DllImp... 阅读全文
摘要:
代碼規範化培訓一. 變量命名規則:1) 類變量1> 第一個字母小寫,並注明變量類型2> 明確定義變量是甚麼,第一個字母大寫3> 如: iDogqty表示整形狗數量變量2) 函數變量1> 必須以下划槓開頭2> 第一個字母小寫,並注明變量類型3> 明確定義變量是甚麼,第一個字母大寫4> 如: _iDogqty表示整形狗數量變量3) 循環變量1> 必須以i , j , k4) 常量,只讀變量1> 所有必須大寫, 明確定義變量是甚麼2> 最後用一個下划槓加三個大寫表示常量類型3> 如: DOG_NAME_STR表示狗名字是字符串型二. 阅读全文
摘要:
今天总结一下js中几个对象的区别和用法: 首先来说说 parent.window与top.window的用法 "window.location.href"、"location.href"是本页面跳转 "parent.location.href"是上一层页面跳转 "top.location.href"是最外层的页面跳转 举例说明: 如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href"、&qu 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Drawing.Imaging;using System.Drawing.Drawing2D;namespace LOVE{ public partial class Form1 : Form { private int 阅读全文
摘要:
while (true)//表示不停重复执行这个代码片段 { if (form != null) { form.ShowDialog();//当前窗口的起始点,只要reForm窗体类发生改变,就从重复执行代码段 form = form.reForm; } }关键代码见红色处 public partial class Main : newForm { System.Timers.Timer _timer10 = new System.Timers.Timer(); System.Timers.Timer _timer30 = new System.Timer... 阅读全文
摘要:
严谨!!!!DataSet ds = salarySum.GetDataSalarySum2(libUser.SelectedValue, dtpMonth.Value.Date); if (ds != null && ds.Tables.Count > 0) { 阅读全文
摘要:
if (libUser.Items.Count > 0) { string _sUserList = string.Empty; foreach (object o in libUser.Items) { _sUserList += o.ToString().Split('|').GetValue(1).ToString() + ","; } _sUserList = _sUserLis... 阅读全文
摘要:
1.//this.dgvEmployees.ColumnHeadersDefaultCellStyle.ForeColor = Color.Blue; //dgvEmployees.RowHeadersVisible = false;//列头影藏 //dgvEmployees.Columns["image_path"].Visible = false;//图片路径列隐藏 //dgvEmployees.AutoResizeRowHeadersWidth(DataGridViewRowHeadersWidthSizeMode.A... 阅读全文
摘要:
DECLARE @SQL VARCHAR(8000)SET @SQL = 'select overcode 'SELECT @SQL = @SQL + ' , max(case header when ''' + header + ''' then 1 else 0 end) [' + header + ']'FROM (SELECT DISTINCT header FROM overtime_detail) AS aSET @SQL = @SQL + ' from overtime_det 阅读全文
摘要:
string TripCode = "BT"+DateTime.Now.ToString("yyyyMMddHHmmss");//出差单号 阅读全文