public class B
{
public delegate int Del();
public void Test()
{
List<Del> dell=new List<Del>(); ……继续阅读 »
9年前 (2016-03-06) 1007浏览
0个赞
MoshangYanYu 于 2016-06-01 16:42:53 编辑
dropdownlist datagridview ASP.NET
本人在Datagridview的模板列中有两个dropdownlist,一个是接收人单位,一个是接收人。两个下拉框需要联动。
现在数据已经加载出来了,但是接收人这个dropdownlist的selectindexc……继续阅读 »
9年前 (2016-03-06) 1503浏览
0个赞
http://v.youku.com/v_show/id_XMTU3NDIxMjgwOA==.html
视频9秒,仔细看,op_id=1,下拉框要显示【是】,为0显示【否】,点的快的情况下,从1切到0,下拉框没有变成【否】,其它控件里面的内容也没有读取到。这是什么原理?
本人测试了另外一个人写的,假如点太快,只是会造成停顿,例如本人选中内科,一行都是蓝的,本……继续阅读 »
9年前 (2016-03-05) 1732浏览
0个赞
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System……继续阅读 »
9年前 (2016-03-05) 2086浏览
0个赞
DataSet ds = DBUtility.Sqlhelper.Query(sb.ToString());
if (ds != null)
{
if (ds.Tables != null)
{
if (ds.Tables[0].Rows.Count > 0)
{
jsonData = Common.ToJson.Dtb2Json(ds.Table……继续阅读 »
9年前 (2016-03-05) 1682浏览
0个赞
在form1里菜单点击修改,弹出form2,然后在form2中的textbox中输入,怎么获得textbox中的数据然后返回到form1中?
解决方案
20
public class Form2 : Form{
....
public string Result{ get{return textBox1.Text;} }
priva……继续阅读 »
9年前 (2016-03-05) 2802浏览
0个赞
sql语句:
SELECT (b.cFullName+b.MiddleName+b.cEnglishName) AS UserName ,sum(a.Integral) AS Integral
FROM AI_Integral AS a LEFT JOIN dbo.Employees AS b ON a.EmployeeID=b.cEmployeeID……继续阅读 »
9年前 (2016-03-05) 2229浏览
0个赞
使用读卡器获得的IC卡序列号是一个四个字节的byte数组,卡号是一个整数。
序列号:{36,215,202,175},卡号:618121903。
从序列号是怎么样转化成卡号的?
解决方案
40
starfd 于 2016-06-01 22:29:41 编辑
一般来说这两个号没直接对应关系的吧?
脑子秀逗的一句话删掉
40
一般卡号和序列号是没有直接对应关系……继续阅读 »
9年前 (2016-03-05) 4339浏览
1个赞
起因:将 作为数据源加到DatagridView时,DatagridView正常显示。
代码如下:
this.DayPlan_DGView.DataSource = mDataSet_CyclePlan.Tables[0];
this.DayPlan_DGView.Columns[0].FillWeight =……继续阅读 »
9年前 (2016-03-05) 2894浏览
0个赞