摘要:
nt UserID = Convert.ToInt32(listView1.SelectedItems[0].Text); int res= UserAccessor.DelUserInfo(UserID); if (res 0) { int a = listView1.SelectedIndices[0]; //定位选中项索引 listView1.Items[a].SubItems[7].Text = "xxx"; //选中项应用 } 阅读全文
摘要:
摘自:http://zhidao.baidu.com/question/96926630.html?si=1 using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Data... 阅读全文
摘要:
在Delphi中的Record类型中,与之C语言对应的即是结构体类型(struct),也可能是为了符合C语言或C++程序员的习惯,对于它在Delphi中的应用存在的一些问题进行初步的说明。在Delphi中的记录体类型有两种方式定义Type RecTest = record (packed) ID :integer; Name :string; Descript:string; end;之两种类型的主要区别在于在内存中的存放,Packed是紧缩类型的,可以节省内存空间与存放的空间,但是它定义好了对应的长度,所以不太适合存放不定长的数据,如string类型的数据;同时在使用记录体类型时特别要注意的 阅读全文