vc++6.0操作sqlite实例,使用list控件,mvc模型,对sqlite数据库增删查改操作。适合入门新手。
2023-12-20 08:04:01 7.69MB vc++6.0 sqlite实例
1
vc++6.0实现的注册表管理器
2023-12-20 08:03:36 1.87MB vc++6.0实现 注册表管理器
1
vc++6.0远程语音监控
2023-12-20 08:03:10 11.56MB vc++6.0 远程语音
1
QT简单记事本源码简单案例,支持保存打开,复制黏贴等。亲测Qt Creator 6.0 (Community)可以运行。
2023-12-20 07:52:25 12KB
1
在vc++6.0环境下实现了带图标的菜单功能,并将实现带图标菜单的功能封装到了IconMenu类,可供方便的代码复用。
2023-12-19 08:00:33 3.57MB vc++
1
VC++界面换肤 界面自绘 内置滚动条自绘 菜单自绘源代码,c++ ,非常好.免费给大家.
1
好玩的贪吃蛇游戏,可以暂停,也可以用鼠标控制食物,还可以进行排名。本程序为本人在本科期间所做的VC++ 单文档程序,适合初学者参考。快捷键为:ESC键 退出ENTER/SPACEBAR/P键 暂停/恢复。
2023-12-17 08:03:56 7.39MB 源码
1
本书详细介绍了VC++ 音视频处理技术及实例,想做音视频处理的可以下载看看啊
2023-12-17 08:00:29 22.13MB VC++ 音视频处理
1
仿微软,简单功能齐全的notepad记事本程序和源码,提供给初学者交流和学习。 对search方法略作修改,查不到字符时返回起始位置; public void button1_Click(object sender, EventArgs e) { if (textBox1.Text.Length > 0) { str = textBox1.Text; fm.searchStr = textBox1.Text; fm.matchCase = checkBox1.Checked; fm.upCheck = radioButton1.Checked; } else { str = fm.searchStr; checkBox1.Checked = fm.matchCase; radioButton1.Checked = fm.upCheck; } if (str == null) { MessageBox.Show("找不到" + str, "记事本"); } else { if (checkBox1.Checked) { if (radioButton2.Checked) { select += fm.richTextBox1.SelectedText.Length; marker = select; select = fm.richTextBox1.Find(str, select, RichTextBoxFinds.MatchCase); if (select == -1 ||select=marker) { marker = start; select = start; fm.richTextBox1.SelectionStart = start; if (select != 0) fm.richTextBox1.Find(str, 0, select, RichTextBoxFinds.Reverse | RichTextBoxFinds.MatchCase); MessageBox.Show("找不到" + str, "记事本"); start = marker; } } } else { if (radioButton2.Checked) { select+=fm.richTextBox1.SelectedText.Length; marker = select; select = fm.richTextBox1.Find(str, select, RichTextBoxFinds.None); if (select==-1||select=marker) { marker = start; select = start; fm.richTextBox1.SelectionStart = start; if (select != 0) fm.richTextBox1.Find(str, 0, select, RichTextBoxFinds.Reverse | RichTextBoxFinds.None); MessageBox.Show("找不到" + str, "记事本"); start = marker; } } } } }
2023-12-16 05:04:09 164KB C#记事本
1
VC各种综合类的设计,包含有:菜单类、操作Excel类、ADO、打印等等。
2023-12-15 14:26:22 557KB VC各种综合类的设计
1