-
好多 实用的net源码,拿出来与大家共享!多多支持!
好多 实用的net源码,拿出来与大家共享!多多支持!-Healey net source of practical, to show and share! The generous support!
- 2022-01-26 08:34:01下载
- 积分:1
-
多个view使用tab控件进行切换的例子
多个view使用tab控件进行切换的例子-Example in which can exchange many views by a tab control
- 2022-02-18 15:46:42下载
- 积分:1
-
主要功能: 1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,...
主要功能: 1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,可精确控制字段的读写属性 3、丰富的数据编辑方式:提供按Form方式编辑和按Grid方式编辑两种方式数据编辑界面,对字段的输入方式提供:普通文本框、复选框、密码框、多行文本、下拉列表、引用其它表等多种输入方式 4、数据重构:动态的修改数据字典,通过对数据字典的修改可动态的控制前台界面的显示及输入 5、代码维护:维护下拉列表编辑模式对应的下拉列表内容 6、权限控制:控制用户及角色的功能权限及字段权限 7、简单的应用系统框架-main functions : 1, xpGrid Data Control : According to the database data dictionary definition DataGrid automatically generated, would not have to write code data can be changed to delete the two, the competence of integrated control functions and powers according to the distribution field, the field of precision control read and write attributes 3, rich data editing : Form provided by the editors and by the way Grid two ways to edit data editing interface to the field to provide input : ordinary text box, check box, the password box, and more lines of text, drop-down list, to use other forms of input, such as Mode 4, data reconstruction : Dynamic the revised data dictionary, data dictionaries can
- 2022-03-25 09:51:12下载
- 积分:1
-
how to change the color of the control procedures as an example to ListBox
如何改变控件颜色 本程序以ListBox为例-how to change the color of the control procedures as an example to ListBox
- 2023-05-07 11:00:02下载
- 积分:1
-
学生成绩管理系统
使用类的思想,对学生成绩进行管理,用c语言实现,经过编程调试,最终达到输入输出成绩,排序,求平均分,修改,删除,添加的功能
- 2022-08-04 05:11:07下载
- 积分:1
-
MFC创建进程、打开进程、终止进程
资源描述
创建进程、打开进程、终止进程
*两个函数 CreateProcess、openProcess、TerminateProcess
*获得进程句柄
*获得进程号
*提升进程权限
*Microsoft Spy++
操作平台:win10+vs2013 pro
操作步骤:
1、创建进程
PROCESS_INFORMATION pi;//进程信息结构
STARTUPINFO si;//启动信息结构
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
si.wShowWindow = SW_SHOW;
si.dwFlags = STARTF_USESHOWWINDOW;
TCHAR szPath[] = TEXT("c:windowssystem32
otepad.exe E:c++MFCa.txt");
BOOL bRet = ::CreateProcess(NULL, szPath, NULL, FALSE, NULL, NULL, NULL, NULL, &si, &pi);
int error = GetLastError();
if (bRet)
{
::CloseHandle(pi.hThread);
::CloseHandle(pi.hProcess);
AfxMessageBox(TEXT("创建进程成功"));
}
else
{
AfxMessageBox(TEXT("创建进程失败"));
}
2、打开进程
DWORD pid;
//若有指定窗口类和窗口名称则表示成功返回一个窗口的句柄
HWND hCalc = ::FindWindow(TEXT("Note
- 2022-03-25 15:36:01下载
- 积分:1
-
界面漂亮的对话
一个非常漂亮的对话框界面,一个 漂亮的对话框界面。-nice dialogue interface
nice dialogue interface
- 2022-05-17 18:55:16下载
- 积分:1
-
tcp 调试助手 客户端源码 多线程
该网络调试助手源码仅是客户端 多线程源码,可以实现十六进制的发送,定时发送等,是本人在CSDN上下载后改进的源码,有较好的参考价值。比常规的网口程序较为完整
- 2022-03-19 09:29:24下载
- 积分:1
-
支持直播的flash播放器源码
应用背景在线直播 在线视屏观看,目前大部分视频网站都转向了html5,但是如果是接触到直播需求的话,就必须要借助flash来实现了关键技术主要运用netconnection netStream 可以支持网页在线trace输出调试
- 2022-02-02 09:40:09下载
- 积分:1
-
使用Flash的ActionScript语言lite2.0经营小游戏!诺基亚7610复制…
使用ActionScript语言 flash lite2.0运行的 一个小游戏!仿照诺基亚7610的宠物鱼游戏的一部分做成的-ActionScript language to use flash lite2.0 to run a small game! Nokia 7610 replica of the pet fish as part of the game made
- 2022-03-12 18:14:35下载
- 积分:1