-
这VB6代码时钟。
This the VB6 code for Clock.-This is the VB6 code for Clock.
- 2022-09-16 14:10:03下载
- 积分:1
-
计算机图形学点在多边形内/外的判断,给出了一个例子,可以画任意的多边形,判断点是否在多边形内,可直接运行。...
计算机图形学点在多边形内/外的判断,给出了一个例子,可以画任意的多边形,判断点是否在多边形内,可直接运行。-Computer graphics point in polygon inside/outside of the judge is given an example, you can draw an arbitrary polygon, point to determine whether the polygon can be directly run.
- 2022-01-25 14:48:24下载
- 积分:1
-
考勤管理
考勤制度是企业的生命线
- 2022-05-14 07:39:23下载
- 积分:1
-
房地产中介管理系统
应用背景房产中介管理系统是一套功能强大通用性极强的房产管理软件,软件界面设计简洁,美观,其人性化的软件流程,使普通用户不需培训也能快速掌握软件操作使用方法,上手极易。商友房产管理软件广泛适用于企业,公司的房产管理,客户档案管理,是您企业进行房产管理的强大工具。软件支持外部表数据导入各种数据也可以方便导出为Excel,Excel,Word等数据格式;报表支持自定义打印。关键技术它集房源管理、客户管理、销售管理、出租管理,统计分析等强大功能为一身,软件界面简洁优美,操作直观简单,无需专门培训即可正常使用。仿美萍房产中介管理系统能广泛适用房介经营商、地产代理商等房屋中介销售出租机构使用。仿美萍房屋中介管理软件是您加强房源管理、客户管理,员工管理,提高工作效率的强大助手 ;
- 2022-04-29 02:48:26下载
- 积分:1
-
完整的windows ce下PPC通讯测试程序.
完整的windows ce下PPC通讯测试程序.-integrity of the windows ce under PPC communications test procedures.
- 2022-05-22 12:13:32下载
- 积分:1
-
访问Windows和System32默认的完整路径,初学者可以学习参考。
获取windows和system32的默认完整路径,初学者可以学习参考一下-Access to windows and system32 default the full path, beginners can learn to refer to
- 2023-02-06 18:25:03下载
- 积分:1
-
采用 Windows 表单的简单计算器
翻译 maninwest@Codeforge作者:Yvan Rodrigues@CodeProject 使用代码 using System;
using System.Windows.Forms;
namespace RedCell.App.Calculator.Example
{
public partial class Form1 : Form
{
private double accumulator = 0;
private char lastOperation;
public Form1()
{
InitializeComponent();
}
private void Operator_Pressed(object sender, EventArgs e)
{
// An operator was pressed; perform the last operation and store the new operator.
char operation = (sender as Button).Text[0];
- 2022-06-29 09:36:47下载
- 积分:1
-
在 DBMS 中,可以使用锁来控制多个程序对数据项的访问:当程序要访问数据项时,要给数据项上锁。如果它仅仅是读取数据项,则通常上共享锁,这样其它的事务也可以同时...
在 DBMS 中,可以使用锁来控制多个程序对数据项的访问:当程序要访问数据项时,要给数据项上锁。如果它仅仅是读取数据项,则通常上共享锁,这样其它的事务也可以同时读取该数据项。而若此程序是要修改数据项,则会给它数据项上独占锁,此时其它程序也就不能再访问这个数据项了。
对于同一个数据项,若有不同的程序同时给一个数据项上锁,且其中至少有一个是独占锁时,就表示它们发生了冲突。当发生冲突时,加锁的请求就会被拒绝。
每个加锁请求包含三个元素:锁模式、事务标识符和数据项标识符。两个程序可以同时给数据项上锁,前提是它们没有冲突。
在早期开发阶段,你需要编写一个简单的锁管理程序来处理加锁请求。它使用以下的规则来处理各种请求:
若一个加锁请求与先前的加锁请求没有发生冲突,则 DBMS 许可这个加锁请求;
一旦允许了一个加锁请求,则它将永远锁定数据项,不会改变,也不会释放;
如果一个程序的加锁请求与已有的锁发生了冲突,则 DBMS 拒绝这个加锁请求;
如果一个程序的加锁请求被拒绝,则 DBMS 忽略由这个程序发出的后续所有加锁请求。-the DBMS can be used to control the number of locks on the data, of the visit : When the procedures to access data items, data items to give locked. If it is read-only data, usually sharing locks, such other matters can also read the data item. And if this procedure is to amend the data, it will give information on items exclusive lock, other programs at this time, it will not re-visit this item of data. For the same data, if a different procedure for a data item unlocked but at least there is an
- 2022-07-12 16:39:28下载
- 积分:1
-
本程序是基于vc++开发环境的,实现bmp文件的打开与保存功能的一个程序...
本程序是基于vc++开发环境的,实现bmp文件的打开与保存功能的一个程序-This procedure is based on the vc++ Development environment, the realization of bmp files to open and preservation of function of a program
- 2022-02-04 16:13:46下载
- 积分:1
-
单片机超声波程序(stc15f2k60s2)
单片机超声波程序,研究了将近一个星期前才整出来的玩意,代码有注释,结构清晰,方便初学者学习了解,分别使用了单片机的定时器0和1,根据单片机数码管IO口的不同可以修改程序源码。
- 2022-02-21 21:57:50下载
- 积分:1