-
Address book order form, suitable for beginners to learn to deepen their underst...
顺序表通讯录,适于初学者加深对其理解学习。-Address book order form, suitable for beginners to learn to deepen their understanding.
- 2022-03-11 18:09:52下载
- 积分:1
-
硬盘序列号的获取和显示C#方法演示
C#获取和显示硬盘序列号的实例源码,创建ManagementObjectSearcher对象,存储磁盘序列号,调用ManagementObjectSearcher类的Get方法取得硬盘序列号,此行代码重要:strHardDiskID = mo["SerialNumber"].ToString().Trim();//记录获得的磁盘序列号,然后用label1.Text = "硬盘序列号: "+strHardDiskID;//显示硬盘序列号。
- 2023-06-16 12:00:02下载
- 积分:1
-
VB.NET实现无边框、无标题栏的网页浏览器
VB.NET实现无边框、无标题栏的网页浏览器,这个窗口同时还没有状态栏,可以说是一个无边框的窗口,直接显示内容,浏览器功能是基于Windows的IE组件,直接调用的IE内核,本程序其实最值得参考的部分是窗体界面的设计,如何在VB.NET中实现无标题栏和状态栏的窗口,这个值得学习哦。
- 2022-02-01 12:17:36下载
- 积分:1
-
这里提到的方法大家可以实验,大家一起讨论!
这里提到的方法大家可以实验,大家一起讨论!-here is the way we can experiment, we can discuss!
- 2022-07-27 18:50:06下载
- 积分:1
-
altera fpga bbi cable
altera fpga bbi cable
- 2022-03-12 18:08:20下载
- 积分:1
-
一个公司的光盘仓库管理软件源码,用vb.net编写完成
一个公司的光盘仓库管理软件源码,用vb.net编写完成-a company"s warehouse management software CD-ROM source code, prepared by vb.net
- 2022-03-09 23:30:12下载
- 积分:1
-
C in A Nutshell
Learning a language
C in A Nutshell
Learning a language--any language--involves a process wherein you learn to rely less and less on instruction and more increasingly on the aspects of the language you ve mastered. Whether you re learning French, Java, or C, at some point you ll set aside the tutorial and attempt to converse on your own. It s not necessary to know every subtle facet of French in order to speak it well, especially if there s a good dictionary available. Likewise, C programmers don t need to memorize every detail of C in order to write good programs. What they need instead is a reliable, comprehensive reference that they can keep nearby. C in a Nutshell is that reference.
- 2022-12-16 09:20:03下载
- 积分:1
-
支持多级子菜单的展开菜单代码
支持多级子菜单的展开菜单,由JavaScript代码实现的多级菜单,第一个是竖向排列,向右展开的菜单,下边那个是向下展开,二级再向右展开的多级联动菜单,在IE8下测试通过,其它浏览器环境下未做测试,应该也可以吧,本菜单主要是用来学习的。
- 2022-03-05 18:08:47下载
- 积分:1
-
Flash相集画廊特效
Flash相集画廊特效,左侧显示缩略图,右侧显示大图片,布局经典的一种Flash版电子相册,可看作是图片查看器,挺不错的动画效果。
- 2022-05-06 12:25:06下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1