-
top
说明: FPGA程序的top.v文件,主要实现DDS信号发生器功能,通过定时器,可简单实现输出幅值无极跳变(FPGA procedures top.v documents, the main function of DDS signal generator, through the timer can be simple to achieve the output amplitude wuji hopping)
- 2008-12-05 16:18:28下载
- 积分:1
-
科研管理系统
系统管理:包括参数设置,项目类别设置,学院设置,学历学位设置,著作类别设置。 科研管理模块:包括横向项目管理、纵向项目管理、论文管理、著作管理、专利管理这几个方面的管理,可以实现对科研项目的增加,修改,删除,快速查询,保存等操作。 科研查询模块:选择查询信息类型,查询条件,输入关键字,然后选择重新检索和在结果中检索,以进一步缩小查询范围。如果您先查看所有数据,只需选择查询信息类型,然后单击查看所有即可。您可以选择按不同的条件升序或降序排列。同时,本系统还实现了双击数据库表格,显示此条记录的完整信息。 开发环境为Visual Studio 2010,数据库为SQL Server 2008,数据库文件在DB_51aspx文件夹中附加就行。
- 2023-06-09 01:55:04下载
- 积分:1
-
FlashWriteRead
飞思卡尔dg128芯片,实现芯片的Flash擦写功能,附带串口通信功能,可通过CAN通信输入数据后存储到Flash区域,已通过调试。(Freescale the DG128 chip, chip Flash erase function, with the serial communication function, by CAN communication input data stored in the Flash area, through debugging.)
- 2013-05-04 07:59:58下载
- 积分:1
-
Opencv彩色目标跟踪(VS2010开发平台)
资源描述运用vs2010作为开发平台,通过opencv库进行彩色目标识别的设计。给出了彩色目标识别的算法设计,并实现了对指定的彩色目标的跟踪识别。
- 2023-04-16 15:05:04下载
- 积分:1
-
Ex006
VS2010 C++学习(6):ListCtrl用法及ADO方式读写Access程序(VS2010 C++ learning (6): ListCtrl Usage and Access ADO literacy program)
- 2014-04-28 17:53:25下载
- 积分:1
-
registerykey C # Windows窗体应用
c中的注册表项#
- 2022-10-22 19:40:03下载
- 积分:1
-
mm_directx_eg
使用DirectX对硬件进行处理程序(Visual 从++ 6。0)(use DirectX right hardware for treatment (from the Visual++ 6. 0))
- 2006-11-10 10:09:26下载
- 积分:1
-
osgRecipes-master
osg cookbook 中的源代码,里面有OSG和CG的结合,OSG和CEGUI的结合,OSG与QT的结合以及PHYSX的结合。(the source code of OSGCOOKBOOK,include integration of OSG and CG,CEGUI,QT and physx)
- 2013-09-07 21:30:32下载
- 积分:1
-
hotel
自己用MFC写的酒店客房管理系统,学习参考用,实际作用不大。(Himself with MFC write hotel management systems, learning reference, the actual effect is not.)
- 2013-09-11 13:52:43下载
- 积分:1
-
C# 启动外部计算器计算数据
C# 启动外部计算器计算数据,private void button1_Click(object sender, EventArgs e)
{//启动计算器计算数据(从当前程序向其他程序发送键击数据)
ProcessStartInfo MyStartInfo = new ProcessStartInfo();
MyStartInfo.FileName = "Calc.exe";
Process MyProcess = new Process();
MyProcess.StartInfo = MyStartInfo;
MyProcess.Start();
System.Threading.Thread.Sleep(100);
IntPtr MyHandle = FindWindow("SciCalc", "计算器");
if (MyHandle == IntPtr.Zero)
{
MessageBox.Show("计算器程序没有运行","信息提示",MessageBoxButtons.OK);
return;
}
SetForegroundWindow(MyHandle);
SendKeys.SendWait("88");
SendKeys.SendWait("*");
SendKeys.SendWait("8");
SendKeys.SendWait("=");
}
- 2023-04-17 08:10:03下载
- 积分:1