-
KeyboardHookDll
C#实现的键盘钩子!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!(C#实现的键盘钩子)
- 2010-11-15 15:03:44下载
- 积分:1
-
HelloWorld
C语言编写的一个基于窗口的Hello World!程序(A Hello World based on Window written in C language! program)
- 2020-06-21 10:40:02下载
- 积分:1
-
arcgis engine 动态图层
arcgis engine C# 代码实现添加动态图层,在动态图层上显示救援车辆,车辆轨迹,闪烁显示救援位置信息。正在学习arcgis 中
- 2022-06-14 07:17:32下载
- 积分:1
-
MatlabandVCmixprogramming
本文介绍了一种将Matlab编译成可执行程序的一种方法,它使得Matlab编写的程序能够完全脱离Matlab这个环境来执行,从而大大提高了程序的应用范围和使用价值(This paper presents a Matlab will compile into an executable, It makes Matlab prepared by the procedures to be immune from the Matlab environment to implement, thus greatly improving the procedures and scope of the application of value)
- 2006-09-20 21:34:14下载
- 积分:1
-
读写ini文件
INI文件就是扩展名为“ini”的文件。在Windows系统中,INI文件是很多,最重要的就是“System.ini”、“System32.ini”和“Win.ini”。该文件主要存放用户所做的
- 2022-04-12 08:32:59下载
- 积分:1
-
股票历史数据demo
查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,查看股票历史数据,
- 2022-07-22 04:04:05下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1
-
DBConvertor
信息系统建设过程中很有可能涉及与旧有系统和其它异构系统之间的集成,而在这些集成当中数据的共享和集成无疑是非常重要的部分。数据映射系统为快速响应异构数据结构和系统之间进行数据共享和集成的需求提供了有力的支持。(Information systems building process is likely to have involved with the old system and other integration between heterogeneous systems, and in which these integrated data sharing and integration is a very important part. Data mapping system for rapid response to heterogeneous data structures and systems for data sharing and integration needs to provide a strong support.)
- 2009-03-05 15:23:22下载
- 积分:1
-
molecular_dynamics
根据Lennard-Jones 分子相互作用模型,利用计算机数值模拟方法,对一定空间内有
限粒子的运动情况进行模拟,分析粒子的运动位置、速度分布(According to Lennard-Jones molecular interaction model, the use of computer simulation methods, for certain limited space to simulate the movement of particles, particle motion analysis of position, velocity distribution)
- 2011-11-27 19:41:37下载
- 积分:1
-
公式计算器MFC版和源码
函数型计算器(VC++6.0)程序,功能:直接识别+,-,*,/运算符号;用法:比如,如果要求两个数之和,输入45+54,点击,得出结果99,输入200-50,点击,结果150。
- 2022-11-02 11:10:02下载
- 积分:1