-
student performance management system is a C language series of the procedures l...
学生成绩管理系统是用C语言编的 程序不大,希望对初学者有用-student performance management system is a C language series of the procedures little hope useful for beginners
- 2022-02-02 01:44:52下载
- 积分:1
-
Visual C# 隐藏显示鼠标的源码实例
Visual C#显示隐藏鼠标的一个例子,隐藏鼠标后,使用Tab键移动光标,从代码中可发现,隐藏鼠标只需将ShowCursor(false);即可,显示时就这样:ShowCursor(true);面向C#初学者。下面是核心的代码:
//重写API函数
[System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "ShowCursor")]
public extern static bool ShowCursor(bool bShow);
private void btnHide_Click(object sender, EventArgs e)
{
ShowCursor(false);//鼠标隐藏
}
private void btnShow_Click(object sender, EventArgs e)
{
ShowCursor(true);//鼠标显示
}
- 2022-08-08 14:49:38下载
- 积分:1
-
Java EJB简单例子
Java EJB简单例子,这是HelloWorldBean的Home接口,它是EJB对象的生成库,无状态会话(将在下一个实例中具体讲解)Bean,这个接口是客户端与EJB对象相互作用的中间途径,通过Client触发调用Bean方法:
try {
//取得初始化属性jndiContext,它是连接JNDI树的起始点
InitialContext jndiContext = new InitialContext(properties);
//取得Home对象的引用
Object ref = jndiContext.lookup("HelloWorldHome");
HelloWorldHome home = (HelloWorldHome)
PortableRemoteObject.narrow (ref, HelloWorldHome.class);
//用EJB生成库Home生成EJB对象
HelloWorld hello= home.create();
//调用EJB对象方法printHelloWorld(),EJB对象把调用委派给Bean
System.out.println (hello.printHelloWorld());
}
- 2022-07-20 22:16:54下载
- 积分:1
-
js日历(可以应用在页面中的强大控件)
应用背景在是网页中合适的日历控件.点击日历弹出日期选择框,默认的是当前日期.根据自己需求选择日期关键技术通过js做出的强大日历,可以应用在页面中,操作简单,显示直观明朗.选择日期简单便捷.
- 2023-02-22 13:40:04下载
- 积分:1
-
此为文档上传的实现程序,例如上传图片的个人相册等之类的。...
此为文档上传的实现程序,例如上传图片的个人相册等之类的。-upload this file to the realization of procedures, such as uploading photos and other personal albums like.
- 2022-09-02 07:50:02下载
- 积分:1
-
经典编程c语言900个例题,是学习c语言很好的例题。
经典编程c语言900个例题,是学习c语言很好的例题。-C programming language 900 Classic Example is a good Example to learn c language.
- 2022-03-12 13:31:39下载
- 积分:1
-
英飞凌XMC4000系列标准库
应用背景Infineon公司开发的XMC4000系列标准库。你可以使用这个库•编程。关键技术这是英飞凌XMC4000系列微控制器的标准库。这个库用C++语言写的。
- 2022-03-19 08:17:19下载
- 积分:1
-
他是一个非常好的娱乐小游戏,可以很好的打发你的寂寞时光,通过磊满一行消去后得分,直到磊满整个空间游戏结束...
他是一个非常好的娱乐小游戏,可以很好的打发你的寂寞时光,通过磊满一行消去后得分,直到磊满整个空间游戏结束-He is a very good fun little game, you can kill a good time for your loneliness, through the Lei Man and his entourage, after elimination score, until the lei over the entire space the game is over
- 2022-03-19 14:46:05下载
- 积分:1
-
一个很好的软件,对与图书管理系统有很好的帮助。
一个很好的软件,对与图书管理系统有很好的帮助。-a very good software, and library management system is a great help.
- 2022-02-03 00:52:50下载
- 积分:1
-
用vc++开发的一个经典程序:Dice。自己开发的,可以两个人玩儿。...
用vc++开发的一个经典程序:Dice。自己开发的,可以两个人玩儿。-with vc++ development of a classic : Dice. Their own development, two people playing.
- 2022-03-13 07:26:52下载
- 积分:1