Location:
Search - replace d
Search list
Description: PowerBuild8原码,用于查找和替换任意PBL中的内容,不过需要PB8动态库libjcc.dll pbapl80.dll pbcmp80.dll pbdev80.dll pbdpp80.dll pbdts80.dll pbdwe80.dll pbdwp80.dll pbeas80.dll pblib80.dll pborc80.dll pbscr80.dll pbsql80.dll pbsys80.dll pbudo80.dll pbvm80.dll pbwed80.dll的支持-PowerBuild8 original code for a random search and replace the content of PBL, But the dynamic needs PB8 libjcc.dll pbapl80.dll pbcmp80.d 'll pbdev80.dll pbdpp80.dll pbdts80.dll pbdwe 80.dll pbdwp80.dll pbeas80.dll pblib80.dll p borc80.dll pbscr80.dll pbsql80.dll pbsys80. dll pbudo80.dll pbvm80.dll pbwed80.dll support
Platform: |
Size: 81851 |
Author: 钱海兵 |
Hits:
Description: 1. 汽车轮渡口,过江渡船每次能载10辆车过江,过江车辆分为客车类和货车类,上渡船有如下规定:同类车先到先上船,客车先于货车上渡船,且每上4辆客车,才允许上一辆货车。若等待客车不足4辆,则从货车代替,若无货车等待允许客车上船。试写一个算法模拟渡口管理。
算法设计:
1客车和货车均建立一个链式队列,初始均为空。以后来一辆车不是货车就是客车,因此可以说整个程序的事件驱动event就是这两个,客车表示1,货车表示0.
2轮船还没有到达时客车和货车均按次序排在各自队列中。
3轮船到达时,根据两个队列的情况,分别处理。处理如下:
a 客车数不满4辆,则将排在前面的货车上船,但总数不能超过10,若没有货车等待,客车直接上船。
b 客车数满4,但不满8辆,客车先上,排在前面的只有一辆货车可以上船,若没有货车等待则货车不上。
c 客车满8辆但不满10,客车上船,排在前面的货车最多可以上2辆,但总数不能超过10。
d 客车满10,则全上客车,但总数不能超过10。
-1. I car ferry, crossing the river each ferry can carry 10 cars crossing the river, crossing the river into passenger vehicles and goods category, Ferry on the following provisions : first vehicle in a first embarkation, the first passenger ferry in the truck and four on each passenger will be permitted on a lorry. If waiting for the bus less than four, then replace the truck, without waiting for the lorry to allow passenger embarkation. Try to write a simulated crossing management. Algorithm design : a bus and the truck were established a chain cohort, the initial were empty. Later, a car is not a passenger vehicle is, it can be said of the entire process event-driven event is the two, said a passenger, said the lorry 0. Two ships have not yet arrived at the bus and the truck were ranked
Platform: |
Size: 2614 |
Author: 西们子 |
Hits:
Description: Distance Vector Routing,也称为Bellman-Ford shortest path algorithm。基本思想是:
每个路由器(路由结点)都维持一张路由表,包括路由的目的地(V)和路由的距离(D)。每个路由器都定期与相邻结点交换路由表信息,据此更新它们自己的路由表。所有结点都监听从其它结点传来的路由表,并按照下列规则更新其路由表:
-发现了一条到达某目的结点的新路由,而该路由在原来的路由表中不存在(即发现了一条新路由),则在路由表中增加该路由。
-发现了一条到达某目的结点的、距离更短的新路由,则用该路由替换原有的路由。
-到达某目的结点的一条路由,其后继结点到达该目的地的距离发生了变化,则需要更新该路由的距离。
本文件中包含详细的源代码和注释,以实现利用距离向量算法更新路由表的功能。-Distance Vector Routing, also known as the Bellman-Ford shortest path algorithm. The basic idea is : Each router (routing nodes) has maintained a routing table, the destinations include routing (V) and the routing of distance (D). Each router regularly with neighboring nodes to exchange routing table information, updated accordingly their own routing table. All nodes are monitored from other nodes sent a routing table, and in accordance with the following rules to update its routing table : - found a purpose to reach a node of the new routing, The routing of the original routing table does not exist (that is, found a new routing), the routing table to increase the routing. - Found a purpose to reach an end point, the short distance between the new routing, the router can be used to replace
Platform: |
Size: 3027 |
Author: agang |
Hits:
Description: This PNG Delphi version 1.56 documentation (this version is a major rewrite intended to replace the previous version, 1.2).
Improvements in this new version includes:
This new version allows the programmer to not use Delphi heavy units which will greatly reduce the size of the final executable.
Read more about this feature here.
Most, if not all, Portable Network Graphics features as CRC checking are now fully performed.
Error on broken images are now better handled using new exception classes.
The images may be saved using interlaced mode also.
Transparency information won t be discarted after the image is loaded any more.
Most of the images are decoded much faster now.
The images will be better encoded using fresh new algorithms.
IMPORTANT! Now transparency information is used to display images.
-Delphi version 1.56 documentat ion (this version is a major rewrite intended to replace the previous version. 1.2). Improvements in this version include new s : This new version allows the programmer to not us e Delphi heavy units which will greatly reduce t he size of the final executable. Read more about this feature here. Most, if not all, Portable Network Graphics features as CRC Checkout king are now fully performed. Error on broken im ages are now better handled using new exception classes. The images may be saved using interlac ed mode also. Transparency information won t be discarted after the image is loaded any more. Mo st of the images are decoded much faster now. The better images will be encoded using fresh new al gorithms. IMPORTANT! Now transparency inform ation is used to d
Platform: |
Size: 292388 |
Author: Han Xun |
Hits:
Description: 代入法的启发示搜索
我的代码实现是:按照自然语言各字母出现频率的大小从高到低(已经有人作国统计分析了)先生成一张字母出现频率统计表(A)--------(e),(t,a,o,i,n,s,h,r),(d,l),(c,u,m,w,f,g,y,p,b),(v,k,j,x,q,z)
,再对密文字母计算频率,并按频率从高到低生成一张输入密文字母的统计表(B),通过两张表的对应关系,不断用A中的字母去替换B中的字母,搜索不成功时就回退,在这里回朔是一个关键。
-generation into a search of inspiration I said a code is : According to the Natural Language alphabet frequency of the size of precedence (has been for the State Statistical Analysis), Mr. into an alphabet frequency tables (A )--------( e), (t, a, o, i, n, s, h r), (d, l), (c, u, m, w, f, g, y, p, b), (v, k, j, x, q, z), again close to the mother language calculated frequency and frequency input precedence generate a secret letter to the mother TAB (B), Table 2 by the corresponding relations, use of the letters A to B to replace the letters of the alphabet, when unsuccessful search regression, Here is a retrospective key.
Platform: |
Size: 3971 |
Author: rtshen |
Hits:
Description: OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for a sub-package listing. Most of the sub-packages in the release are production grade for Linux Fast-STREAMS. All existing validation test suites run clean on supported distributions and architectures.
It is unlikely that the OpenSS7 Master Package will be released as frequently as before. Sub-packages will be released more often. To rebuild the master package with a new sub-package release, simply replace the directory to which the sub-package belongs with the unpacked sub-package release and then rebuild the master package. This release provides support for recent distributions and tool chains.
-OpenSS7 This the fourth public release o f the OpenSS7 Master Package. See README in the r elease for a sub-package listing. Most of the su b-packages in the release are production grade for Linux Fast - STREAMS. All existing validati on test suites run on clean supported distribut ions and architectures. It is unlikely that the OpenSS7 Master Package will be released as freq uently as before. Sub-packages will be release d more often. To rebuild the master package with a new sub-package release, simply replace the directory to which the sub-p ackage belongs with the unpacked sub-package r elease and then rebuild the master package. Thi 's release provides support for recent distribu茅s P茅tion and tool chains.
Platform: |
Size: 1870176 |
Author: aderson |
Hits:
Description: D:\\vc教程\\newweb\\1图像声音\\net1\\采用替换文件的方法截获WinSock中的函数调用-D : \\ vc Directory \\ newweb \\ images a voice \\ net1 \\ documents used to replace the WinSock intercepted the function call
Platform: |
Size: 3886 |
Author: 艾仁 |
Hits:
Description: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="ctl00_Head1"><title>
协同办公系统
</title><link rel="Stylesheet" type="text/css" href="CSS/master.css" />
<link rel="Stylesheet" type="text/css" href="CSS/sitecooperateCss.css" />
<style type="text/css">
.Task_Default_Grid { border:0}
.Task_Default_Grid tr td { height:25px; line-height:25px; color:#0173BC; border:0; color:#6E6F71}
.Task_Default_Grid tr td a { color:#0073BC}
.Task_Default_Title { height:25px; line-height:25px; border-bottom:1px solid #999; color:#333333; font-weight:bold }
.Task_Default_Head { height:25px; line-height:25px; text-align:left; font-weight:lighter; }
.Task_Default_Head th { text-align:left; border:0;}
#Content_right tr td { vertical-align:top}
.mobanul { list-style:none; list-style-type:none; margin:0; padding:0}
.mobanul li { height:26px; line-height:26px;}
.mobanul li a { color:#0073BC}
</style>
<script type="text/javascript">
var w1 = screen.width;
var w2 = w1 - 30;
var h1 = screen.height;
var h2 = 650;
var t1 = (h1 - h2) / 3;
//var appearence = 'dependent:yes;menubar:no;resizable:no;status:no;toolbar:no;titlebar:no;left:5;top:50;dialogWidth:'+w2+'px; dialogHeight:602px';
var appearence = 'dependent:yes;menubar:no;resizable:no;status:no;toolbar:no;titlebar:no;dialogWidth:990px; dialogHeight:652px';
function openexamin(id) {
var url = 'Task_Examin1.aspx?ID=' + id + '&dt=20111116110724';
window.showModalDialog(url, 'none', appearence);
window.location.reload();
}
function opengoexamin(id) {
var url ='go_examin.aspx?ID=' + id + '&dt=20111116110724';
window.showModalDialog(url, "tasknew", appearence);
window.location.reload();
}
function openexaminview(id) {
var url = 'Go_Examin1.aspx?ID=' + id;
window.showModalDialog(url, "goexamin1", appearence);
window.location.reload();
}
function openexamindaiban(id) {
var url = 'Task_Examin1.aspx?daiban=1&ID=' + id + '&dt=20111116110724';
window.showModalDialog(url, 'none', appearence);
window.location.reload();
}
function openexamindaiban1(id, tasktype,url) {
if (tasktype == 'OA') {
var url1 = 'Task_Examin1.aspx?daiban=1&ID=' + id + '&dt=20111116110724';
window.showModalDialog(url1, 'none', appearence);
window.location.reload();
}
else if (tasktype == 'HR') {
window.open(url.replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '='));
}
else if (tasktype == 'ERP待办') {
window.open("http://10.0.3.100:8000/"+url);
}
else {
window.open(url.replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('}', '&').replace('}', '&').replace('|', '&').replace('|', '&').replace('|}', '&').replace('|', '&').replace('|', '&').replace('|', '&').replace('*', '/').replace('*', '/').replace('*', '/').replace('*', '/').replace('*', '/'));
// window.open(url.replace(new RegExp('|', 'g'), '='));
}
}
function GetTasksWait() {
document.getElementById('ajaxwait').innerHTML = "<img src='/_layouts/images/loading.gif' align=absmiddle style='margin:20px' /><span style='color:#666'>正在加载待办事项,请稍等</span>";
AjaxService.GetWaitTasks("panr", GetGetWaitTasks);
}
function GetGetWaitTasks(res) {
document.getElementById('ajaxwait').innerHTML = res;
//window.alert(res);
}
function TaskNew(templetid) {
var url = "task_new1.aspx?templetid="+templetid;
var w1 = screen.width;
var w2 = w1 - 30;
var h1 = screen.height;
var h2 = 650;
var t1 = (h1 - h2) / 3;
var appearence = 'dependent=yes,menubar=no,resizable=no,status=no,toolbar=no,titlebar=no,left=5,top=50,width=965px,height=620px';
var openWindow = window.open(url, "tasknew", appearence);
openWindow.focus();
}
</script>
</head>
<body>
<form name="aspnetForm" method="post" action="thinkanydefault.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMTk4NTM3MDU4D2QWAmYPZBYCAgMPZBYCAgEPZBYCAgEPPCsADQEADxYEHgtfIURhdGFCb3VuZGceC18hSXRlbUNvdW50ZmRkGAEFI2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkZ3JpZFRyYWRlDzwrAAoBCGZkgVPWq+n+ib9NI98bYSPgOP6wYjA=" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="/WebResource.axd?d=YUjlm6ycKfnreIke4GK3XQ2&t=633802920069218315" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=z3KJcVLT9ijw1U1WP3pQFkrXumDsg6wUOC-1ek6Qo_XZeAuKvPuCDOgdKKFxxdmnnoXJFiMaKmNKva15-BdwOk_xeIPnLbrAuAMPt7xuJyY1&t=ffffffffec2d9970" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=z3KJcVLT9ijw1U1WP3pQFkrXumDsg6wUOC-1ek6Qo_XZeAuKvPuCDOgdKKFxxdmnNTUAczOieuXP3zVeTLUjHd_cyvM_8TdB3KcMk-B-U6vUhv5N_CQBxFd9ZErk2oN20&t=ffffffffec2d9970" type="text/javascript"></script>
<script src="AjaxService.asmx/js" type="text/javascript"></script>
<div id="Content_right" style="background-image:none; padding:5px; padding-left:0px; padding-right:0px">
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder1$ScriptManagerAjax', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
//]]>
</script>
<table style="width:100%">
<tr>
<td style="padding-left:10px;">
<span style="float:left"> 待办事项</span><br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td>
<td style="padding-left:10px;">
<span style="float:left"> 跟踪事项</span><br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td>
</tr>
<tr>
<td style=" padding-top:0; width:49%; padding-left: 10px; padding-right: 10px; padding-bottom: 10px;"
rowspan="4" id="ajaxwait">
</td>
<td style=" padding:10px; padding-top:0;height:145px;">
<div>
</div>
</td>
</tr>
<tr>
<td style=" padding:10px; padding-top:0; text-align:right">
<a href="OATaskTrades.aspx" style='color:#0171BD'>[更多...]</a></td>
</tr>
<tr>
<td style="padding-left:10px;">
我的模板<br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td>
</tr>
<tr>
<td style=" padding:10px; padding-top:0;">
<table cellpadding=0 cellspacing=0 style="width:100%;height:145px;"><tr><td style="width:50%">
<ul class="mobanul"></ul>
</td><td>
<ul class="mobanul"></ul>
</td></tr></table>
</td>
</tr>
<tr>
<td style=" padding:10px; padding-top:0; width:49%; text-align:right">
<a href="Task_Wait.aspx" style='color:#0171BD'>[更多OA待办...]</a></td>
<td style=" padding:10px; padding-top:0; text-align:right">
<a href='PersonalTempletsSetup.aspx' style='color:#0171BD'>[更多...]</a><a href='PersonalTempletsSetup.aspx' style='color:#0171BD'>[模板配置]</a></td>
</tr>
</table>
<script type="text/javascript">
GetTasksWait();
</script>
</div>
<script type="text/javascript">
//<![CDATA[
Sys.Application.initialize();
//]]>
</script>
</form>
</body>
</html>
Platform: |
Size: 8895 |
Author: niyang2005@126.comni |
Hits:
Description: PowerBuild8原码,用于查找和替换任意PBL中的内容,不过需要PB8动态库libjcc.dll pbapl80.dll pbcmp80.dll pbdev80.dll pbdpp80.dll pbdts80.dll pbdwe80.dll pbdwp80.dll pbeas80.dll pblib80.dll pborc80.dll pbscr80.dll pbsql80.dll pbsys80.dll pbudo80.dll pbvm80.dll pbwed80.dll的支持-PowerBuild8 original code for a random search and replace the content of PBL, But the dynamic needs PB8 libjcc.dll pbapl80.dll pbcmp80.d 'll pbdev80.dll pbdpp80.dll pbdts80.dll pbdwe 80.dll pbdwp80.dll pbeas80.dll pblib80.dll p borc80.dll pbscr80.dll pbsql80.dll pbsys80. dll pbudo80.dll pbvm80.dll pbwed80.dll support
Platform: |
Size: 81920 |
Author: 钱海兵 |
Hits:
Description: D:\vc教程\newweb\1图像声音\net1\采用替换文件的方法截获WinSock中的函数调用-D : \ vc Directory \ newweb \ images a voice \ net1 \ documents used to replace the WinSock intercepted the function call
Platform: |
Size: 3072 |
Author: 艾仁 |
Hits:
Description: 1. 汽车轮渡口,过江渡船每次能载10辆车过江,过江车辆分为客车类和货车类,上渡船有如下规定:同类车先到先上船,客车先于货车上渡船,且每上4辆客车,才允许上一辆货车。若等待客车不足4辆,则从货车代替,若无货车等待允许客车上船。试写一个算法模拟渡口管理。
算法设计:
1客车和货车均建立一个链式队列,初始均为空。以后来一辆车不是货车就是客车,因此可以说整个程序的事件驱动event就是这两个,客车表示1,货车表示0.
2轮船还没有到达时客车和货车均按次序排在各自队列中。
3轮船到达时,根据两个队列的情况,分别处理。处理如下:
a 客车数不满4辆,则将排在前面的货车上船,但总数不能超过10,若没有货车等待,客车直接上船。
b 客车数满4,但不满8辆,客车先上,排在前面的只有一辆货车可以上船,若没有货车等待则货车不上。
c 客车满8辆但不满10,客车上船,排在前面的货车最多可以上2辆,但总数不能超过10。
d 客车满10,则全上客车,但总数不能超过10。
-1. I car ferry, crossing the river each ferry can carry 10 cars crossing the river, crossing the river into passenger vehicles and goods category, Ferry on the following provisions : first vehicle in a first embarkation, the first passenger ferry in the truck and four on each passenger will be permitted on a lorry. If waiting for the bus less than four, then replace the truck, without waiting for the lorry to allow passenger embarkation. Try to write a simulated crossing management. Algorithm design : a bus and the truck were established a chain cohort, the initial were empty. Later, a car is not a passenger vehicle is, it can be said of the entire process event-driven event is the two, said a passenger, said the lorry 0. Two ships have not yet arrived at the bus and the truck were ranked
Platform: |
Size: 2048 |
Author: 西们子 |
Hits:
Description: 数据结构上机实验
实验题目:两个有序循环链表合并成一个有序循环链表
实验题目:欧洲地图最短路径
实验题目:稀疏矩阵基本运算及转置
实验题目: 已给定先序构造一棵二叉树的算法,请你完成其余部分,包括先序、中序、后序遍历
二叉树并打印出来。先序序列建立二叉树的顺序读入字符为A B C Ф Ф D E Ф G Ф Ф F Ф
Ф Ф,注意输入时Ф用空格代替。
实验题目:复数抽象数据类型的实现-Data structure experiment experimental subject: Two orderly circulation list in an orderly manner into a cycle of experimental topic list: Europe map the shortest path experimental subjects: basic computing and sparse matrix transpose experimental Title: has given a first order structure Binary trees algorithm, please complete the remaining parts, including the first order, in sequence, after the tree traversal and print them. First order sequence to establish the order of tree read characters for the ABC Ф Ф DE Ф G Ф Ф F Ф Ф Ф, Ф attention to input by a space to replace. Experimental subjects: the plural of the realization of abstract data types
Platform: |
Size: 29696 |
Author: 何金龙 |
Hits:
Description: 随想WindowsXP风格VB滚动条控件(V1.0)是继广受好评的随想WindowsXP风格VB按钮控件(V1.0)的第二个WindowsXP风格系列控件产品,基于内部控件VScroll和HScroll基础构建,具备VScroll和HScroll的基本特性,并支持键盘方向键和PageUP、PageDown键,可以完全取代VScroll和HScroll。该控件的问世为推出支持滚动条的TextBox、ListBox、ComboBox控件的WinXP版本提供了可能性。本控件分为三个版本:蓝色、翠绿、银色。它们彼此间二进制兼容。使用示例文件附送的源代码,还可实现对3D鼠标的滚轮事件支持。-Capriccio WindowsXP VB rolling style of control (V1.0) is widely acclaimed Capriccio W VB indowsXP style button control (V1.0), the second series of WindowsXP style control pieces of products, based on the internal controls and HScroll VScroll infrastructure construction, HScroll VScroll and have the basic characteristics, and to support the direction keys and keyboard PageUP. Prompt keys, can completely replace VScroll and HScroll. The advent of the control support for the introduction of the rolling TextBox, ListBox, ComboBox control WinXP version of the possibility. This control is divided into three versions : blue, green, silver. Among them binary compatibility. Examples of the use of the attached document source code, but also achieve the 3D mouse wheel support events.
Platform: |
Size: 234496 |
Author: 王云霞 |
Hits:
Description: Distance Vector Routing,也称为Bellman-Ford shortest path algorithm。基本思想是:
每个路由器(路由结点)都维持一张路由表,包括路由的目的地(V)和路由的距离(D)。每个路由器都定期与相邻结点交换路由表信息,据此更新它们自己的路由表。所有结点都监听从其它结点传来的路由表,并按照下列规则更新其路由表:
-发现了一条到达某目的结点的新路由,而该路由在原来的路由表中不存在(即发现了一条新路由),则在路由表中增加该路由。
-发现了一条到达某目的结点的、距离更短的新路由,则用该路由替换原有的路由。
-到达某目的结点的一条路由,其后继结点到达该目的地的距离发生了变化,则需要更新该路由的距离。
本文件中包含详细的源代码和注释,以实现利用距离向量算法更新路由表的功能。-Distance Vector Routing, also known as the Bellman-Ford shortest path algorithm. The basic idea is : Each router (routing nodes) has maintained a routing table, the destinations include routing (V) and the routing of distance (D). Each router regularly with neighboring nodes to exchange routing table information, updated accordingly their own routing table. All nodes are monitored from other nodes sent a routing table, and in accordance with the following rules to update its routing table :- found a purpose to reach a node of the new routing, The routing of the original routing table does not exist (that is, found a new routing), the routing table to increase the routing.- Found a purpose to reach an end point, the short distance between the new routing, the router can be used to replace
Platform: |
Size: 3072 |
Author: agang |
Hits:
Description: This PNG Delphi version 1.56 documentation (this version is a major rewrite intended to replace the previous version, 1.2).
Improvements in this new version includes:
This new version allows the programmer to not use Delphi heavy units which will greatly reduce the size of the final executable.
Read more about this feature here.
Most, if not all, Portable Network Graphics features as CRC checking are now fully performed.
Error on broken images are now better handled using new exception classes.
The images may be saved using interlaced mode also.
Transparency information won t be discarted after the image is loaded any more.
Most of the images are decoded much faster now.
The images will be better encoded using fresh new algorithms.
IMPORTANT! Now transparency information is used to display images.
-Delphi version 1.56 documentat ion (this version is a major rewrite intended to replace the previous version. 1.2). Improvements in this version include new s : This new version allows the programmer to not us e Delphi heavy units which will greatly reduce t he size of the final executable. Read more about this feature here. Most, if not all, Portable Network Graphics features as CRC Checkout king are now fully performed. Error on broken im ages are now better handled using new exception classes. The images may be saved using interlac ed mode also. Transparency information won t be discarted after the image is loaded any more. Mo st of the images are decoded much faster now. The better images will be encoded using fresh new al gorithms. IMPORTANT! Now transparency inform ation is used to d
Platform: |
Size: 291840 |
Author: Han Xun |
Hits:
Description: 本程序主要是为了在DOS命令行里进行方便的文件字符替换功能,被替换的字符可以是任意的,可以弥补DOS批处理的不足!-This procedure is mainly in the DOS command line in order to conduct a document to facilitate the replacement of the functional characters, the characters have been replaced can be arbitrary, can make up for the lack of DOS batch!
Platform: |
Size: 1024 |
Author: 于 |
Hits:
Description: S3C6410详细的DATAsheet,有1300多页,和6400对比看资料,大部分和6400相同,封装完全一样,可以相互替换-S3C6410 detailed DATAsheet, there are more than 1300 pages, and 6400 to see comparison data, and 6400 most of the same, exactly the same package, you can replace each other
Platform: |
Size: 7701504 |
Author: 钟阳 |
Hits:
Description: 相关的DLL集合,
包括doclist.dll,mfcce300.dll,noteprj.dll,olece300.dll(前四个是支持HPC运行PPC软件的 DLL),gapinet.dll,gx.dll(这个比较重要,用来支持一些图形函数),cecore.dll,sdl.dll(这个类似于 DIRECTX),aygshell.dll(这个文件WINCE.NET4.2也有,不过版本不同,不建议替换),kctrl.dll(这个好象是用来 支持日文的),vbscript.dll,这些都DLL比较重要,有些软件只要把它们拷贝到系统里就可以运行了-DLL collection of related, including doclist.dll, mfcce300.dll, noteprj.dll, olece300.dll (the first four are in support of HPC to run PPC software DLL), gapinet.dll, gx.dll (this is more important to support Some graphics function), cecore.dll, sdl.dll (this is similar to DIRECTX), aygshell.dll (this document WINCE.NET4.2 there, but different versions, it is not recommended to replace), kctrl.dll (this seems to be used to support the Japanese), vbscript.dll, these are more important DLL, and some software so long as they are copied to the system can run on a
Platform: |
Size: 218112 |
Author: coolpad |
Hits:
Description: 自制NTFS格式DOS启动代码。代码小功能强。启动支持IMA文件。并可以随意替换IMA文件-Home NTFS format DOS startup code. Small powerful code. Start to support the IMA file. And can replace paper IMA
Platform: |
Size: 4493312 |
Author: alps |
Hits:
Description: E语言DNF最新秒杀源码,注入器不做过多解释,人物基址按更新替换-E language the DNF the latest spike source injector is not too much to explain, the the People base address by update replace
Platform: |
Size: 215040 |
Author: xuqy |
Hits: