-
mips16_functions_c32_example
PIC32是Microchip公司的32位单片机,此例介绍了如何使用mips16缩短指令集(Is Microchip' s PIC32 32-bit microcontroller, this example describes how to use the reduced instruction set mips16)
- 2010-07-14 14:02:12下载
- 积分:1
-
遗传算法得源代码
说明: 遗传算法得源代码,不是用MATLAB编得,而是用VC++编程.(genetic algorithm in the source code, instead of being MATLAB, but programming with VC.)
- 2006-02-20 20:52:59下载
- 积分:1
-
IDA
这是一套学习IDA逆向很有帮助的教程,本人亲身体验到的,真的跟别的不一样!!!(This is a learning the IDA reverse helpful tutorial, I have personal experience, really not the same as with the other! ! !)
- 2020-07-02 16:00:02下载
- 积分:1
-
C# treeView节点动态删除和添加示例
C# treeView节点动态删除和添加示例,本源码演示了创建一个treeView父节点,创建了三个子节点,然后演示了将这3个子节点添加到父节点中,最后演示了使用Remove方法移除指定的TreeView节点项,添加节点和删除节点定义了两个按钮事件,用户通过单击按钮,激活事件,两个事件的编写方法如下:
private void Form1_Load(object sender, EventArgs e)
{
//建立一个父节点
TreeNode tn1 = treeView1.Nodes.Add("名称");
//建立3个子节点
TreeNode Ntn1 = new TreeNode("明日科技");
TreeNode Ntn2 = new TreeNode("C#编程词典");
TreeNode Ntn3 = new TreeNode("C#从基础到项目实战");
//将这3个子节点添加到父节点中
tn1.Nodes.Add(Ntn1);
tn1.Nodes.Add(Ntn2);
tn1.Nodes.Add(Ntn3);
}
private void button1_Click(object sender, EventArgs e)
{
//如果用户选择了“名称”证明没有选择要删除的子节点
if (treeView1.SelectedNode.Text == "名称")
{
MessageBox.Show("请选择要删除的子节点"); //弹出选择删除节点的提示
}
else
{
treeView1.Nodes.Remove(treeView1.SelectedNode);//使用Remove方法移除选择项
}
}
- 2023-07-29 02:55:08下载
- 积分:1
-
Quectel EC20 官方资料
说明: Quectel EC20 官方资料 AT命令手册 硬件设计手册 用户指导等(Quectel EC20 datasheet)
- 2020-08-16 13:38:23下载
- 积分:1
-
ado查询
CString result,strsql,strcol,strColName,strtemp;
_variant_t va,partment;
CAdoDB db(TEXT("student"));
strsql.Format("%s",B.strsql);
db.ExecuteSQLSelect(strsql);
int k=0,q=0;
if(db.ResultExist())
{
int totalnum=db.GetRecCount();
strtemp.Format("%d",totalnum);
long nItemCount =db.m_pRecordset->GetFields()->GetCount();
db.m_pRecordset->MoveFirst();
if(totalnumadoEOF)
{
for(long i=0;iGetFields()->GetItem(i)->GetName());
strcpy(B.AllInfo[i],db.GetRecordResult(strColName));
}
B.OperState=totalnum;//总个数
Send(&B,sizeof(B));
db.m_pRecordset->MoveNext();
}
}
else
{
while(q
- 2022-06-20 20:45:23下载
- 积分:1
-
punda
Rabbit has been released into the public domain and may be used
freely for any purposeRabbit has been released into the public domain and may be used
freely for any purposeRabbit has been released into the public domain and may be used
freely for any purposeRabbit has been released into the public domain and may be used
freely for any purposeRabbit has been released into the public domain and may be used
freely for any purposeRabbit has been released into the public domain and may be used
freely for any purpose
- 2012-05-16 02:47:43下载
- 积分:1
-
陈敏物联网仿真
与陈敏《OPNET物联网仿真》配套的源码(this is source code of the booke of <OPNET IOT Simulation>)
- 2020-09-16 13:07:55下载
- 积分:1
-
This article shows how to implement an Expl orer like treeview drag and drop in...
This article shows how to implement an Explorer like treeview drag and drop in C#.-This article shows how to implement an Expl orer like treeview drag and drop in C#.
- 2022-03-04 13:49:42下载
- 积分:1
-
STM32_ucos
该程序的主要功能是实现在STM32上数字示波器的实现,可以显示频率,幅值。(The main function of this program is to achieve the STM32 implementation of the digital oscilloscope can display the frequency, amplitude.)
- 2014-08-12 15:47:32下载
- 积分:1