联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All Pascal/Delphi编程(267) 

[Pascal/Delphi编程] 20150711182330_wechat20150707

微信接口框架 1、项目使用delphi2010版本开发编译 2、框架采用web app的模式注册运行,例如:项目名称为wechat_debug,类工厂名称为wechat, 编译运行后(要先启动webappdbg.exe),调用url为:http://127.0.0.1:80/wechat_debug.wechat 3、框架只封装了最基础的功能,如access_token的获取及刷新、自定义菜单的发布、模板消息的发送 4、各种事件的具体处理在wechat.xml文件中进行配置,将调用plugin插件完成,并反馈用户 5、自定义菜单文件wechat.json需要与服务程序放在同一文件夹下, 使用浏览器访问http://127.0.0.1:80/wechat_debug.wechat?help,点击refresh_menu即可 6、目前只支持明文模式,aes加解密尚需完善 7、由于delphi2010的indy有bug,访问https不稳定,固另外用delphi7写了http.dll,实现https的访问 8、框架目前已在投入正式环境使用,但感觉不是非常稳定,有时候几天后会down掉 9、水平有限,此次开源的目的是为了大家能够相互学习,共同进步并完善框架
WeChat interface framework 1. The project is compiled and compiled using delphi2010 version. 2. The framework is registered to run in the web app mode, for example: the project name is wechat_debug, and the class factory name is wechat. After compiling and running (to start webappdbg.exe first), the URL is called: http://127.0.0.1:80/wechat_debug.wechat 3. The framework only encapsulates the most basic functions, such as access_token acquisition and refresh, custom menu publishing, template message sending 4. The specific handling of various events is configured in the wechat.xml file, which will call the plugin plug-in and feedback the user 5, custom menu file wechat.json needs to be placed in the same folder with the service program. Use browser to access http://127.0.0.1:80/wechat_debug.wechat? Help and click refresh_menu. 6, at present, it only supports plain text mode. AES encryption and decryption still needs to be improved. (2018-10-25, Pascal, 5700KB, 下载6次)

http://www.pudn.com/Download/item/id/1540454577635862.html

[Pascal/Delphi编程] Delphi_277212

Delphi:Delphi仿Windows计算器,实现从右向左输入内容的计算器,从界面上来看,似乎与Windows计算器很一样,为了演示从右到左输入字符,写了这个用于演示功能的计算器,在计算器的数据输入窗口中,你可看到是从右边输入数据的。   相关的源代码说明:operator = (Emp,add,sub,mul,divid) 定义空、加、减 、乘、除,Operate1: Operator = emp 记录上一次用户按下的运算符,Pointed: Boolean = False 作用是定义是否输入小数点,Delphi中关于StrToFloat函数的详细说明或实例参见《Delphi编程词典》基础知识部分,该部分对所有对象都有详细语法说明和最实用的应用实例。
Delphi: Delphi imitation of the Windows calculator, calculator typing from right to left, from the interface, it seems that it is the same with the Windows calculator, in order to demonstrate enter characters from right to left, wrote this calculation functions for demonstration , a data entry window in the calculator, you can see the input data from the right. Associated source code shows: operator = (Emp, add, sub, mul, divid) define empty, add, subtract, multiply, divide, Operate1: Operator = emp once the user presses on the record operators, Pointed: Boolean = False role is to define whether a decimal point, Delphi StrToFloat detailed description of the function or instance see "Delphi programming Dictionary" basics section, which has a detailed description of the syntax and the most practical application examples for all objects. (2014-07-05, Delphi, 53KB, 下载1次)

http://www.pudn.com/Download/item/id/2581811.html

[Pascal/Delphi编程] tcal5.5

文本计算器说明 一、用法: 1、文本计算器具有关闭时是否保存计算结果的功能、计算结果的小数位选择功能,小数位0表示计算精度; 2、文本计算器打开时,可以自动加载上次的计算结果以及上次关闭时窗口位置; 3、双击计算器的文本框可打开数字键盘,方便笔记本用户使用; 4、输入数学表达式后,按回车键,自动计算结果; 5、一个表达式必须在一行内全部输入; 6、表达式不输入内容时直接回车,不再出现错误提示; 7、需要当记事本用时,在本行最前面加入 号,可不出现错误提示! 8、表达式可以是加+、减-、乘*、除/,以及多种函数组合 二、其它说明 1、用户可到QQ群104837062更新,作者可根据用户的意见,增加部分适用功能; 2、为了尊重软件作者的劳动成果,如果你增加或补充功能,请说明。
Operators Numeric operators:+,- ,* , /, (or mod), \ (or div), ^ (raise to a power). Comparison operators: =, <>, >, <, >=, <=. Logical operators: & (or and), | (or or), xor, ! (or not). Bitwise operators: && (or band), || (or bor), bxor, !! (or bnot), << (or shl), >> (or shr). Concatenation operator: @. Difference in addition and concatenation operations is that @ always treats its operands as strings, i.e. "123" @ 321 results in "123321" (unlike it "123"+ 321 returns 444). Numeric functions: Trigonometric, hyperbolic and invert functions: sin(x), cos(x), tan(x), asin(x), acos(x), atan(x), cosh(x), sinh(x), tanh(x), asinh(x), acosh(x), atanh(x) Exponential and logarithmical functions: log(x), lg(x) (log base 10), exp(x), sqrt(x) Integer and factional part of number: int, frac Absolute value: abs Sign of a number: sign Random value and initialization of the random number generator: rnd(x), randomize Statistical func (2012-10-17, Delphi, 429KB, 下载5次)

http://www.pudn.com/Download/item/id/2018249.html

[Pascal/Delphi编程] EhLib.v5.6.215.Full.Source

EhLib5.6生成5.6.215俄罗斯版本。包括完整的源代码。 ---------- --- 该库包含Borland Delphi的组件和类 版本5,6,7,8和9,用Borland C Builder的版本5和6, Borland Developer Studio的2006年中,CodeGear Delphi 2007中, RAD Studio 2009中,Embarcadero的RAD Studio 2010中, RAD Studio XE的RAD Studio的XE2。
EhLib 5.6 Build 5.6.215 Russian version. Full source included. ---------- --- The Library contains components and classes for Borland Delphi versions 5, 6, 7, 8 & 9 , Borland C++ Builder versions 5 & 6, Borland Developer Studio 2006, CodeGear Delphi 2007, RAD Studio 2009, Embarcadero RAD Studio 2010, RAD Studio XE & RAD Studio XE2. (2012-03-13, Delphi, 2564KB, 下载127次)

http://www.pudn.com/Download/item/id/1791734.html

[Pascal/Delphi编程] TransLib

这部分与维生素D3 , D4类和D5 Translib是基于baseclass TCustomTransCanvas 。这个类是能够使其帆布半透明。透明度是由一系列的参数给予了高度的控制输出。 TransCanvas创建了一个内部位图的面积仅次于控制。涂料指示控制画布,然后应用到背景使用几种计算创造透明度的影响。 一项特别活动OnCalc暴露,让你提供你自己的透明度计算algorythms /效果。 这个图书馆是为GIFLine专业。下载GIFLine专业如果您想看到这些成分的行动。访问http://www.diprode.com/giflinepro.htm
This component works with D3,D4 and D5 Translib is based on the baseclass TCustomTransCanvas. This class is capable to render its canvas semi transparent. The transparency is controlled by a range of parameters giving a high level of control over the output. TransCanvas creates an internal bitmap of the area just behind the control. Paint instructions to the controls Canvas are then applied onto the background using several computations to create the transparency effects. a special event OnCalc is exposed to allow you to provide your own transparency calculation algorythms/effects. This library was developped for GIFLine Pro. Download GIFLine Pro if you would like to see these components in action. Visit http://www.diprode.com/giflinepro.htm (2009-03-19, Delphi, 15KB, 下载5次)

http://www.pudn.com/Download/item/id/679712.html

[Pascal/Delphi编程] vinson_zeng_DCNF

DCNF 采用RSOMC(Remote Service Object Method Call)远程服务对象方法调用机制,分层结构实现. 1.网络通信适配层 2.服务对象管理层 3.应用业务层(For Delphi VCL 组件) 容易学习,灵活的扩展机制.兼容原有的应用开发环境(譬如:VCL DB 控件), 利于旧系统迁移(大部分成熟的应用软件都是C/S结构,其业务功能非常完善, 为了能在互联网上直接使用,技术解决方案大部分为VPN,远程桌面等, 采用第三方支持技术实现,加重用户使用运维成本,并没有直接提升产品本身价值) 所以采用一种平滑的迁移技术方案,从而提高产品的竞争优势,延长产品生命周期.
DCNF used RSOMC (Remote Service Object Method Call) remote method invocation mechanism for clients, layered structure .1. Network adaptation layer 2. 3 client management. Application Service Layer (For Delphi VCL components) easier to learn, the expansion of flexible mechanisms. compatible with existing application development environment (for example: VCL DB controls), in favor of the old system migration (most mature applications are C/S structure, its operational function is perfect, in order to be directly on the Internet use, the majority of technology solutions for VPN, Remote Desktop, etc. to support the use of third-party technology, increase user operation and maintenance costs, and not directly enhance the value of the product itself), so using a smooth migration of technical programs, thereby enhancing the product competitive advantage, to extend the product life cycle. (2008-05-30, Delphi, 1378KB, 下载25次)

http://www.pudn.com/Download/item/id/477331.html

[Pascal/Delphi编程] UtilMind.AutoUpgrader.Pro.v4.6.7FS

UtilMind.AutoUpgrader.Pro.v4.6.7.for.Delphi.BCB.Full.Source.READ.NFO-SSGDelphi/C++ Builder组件,能为你开发的软件添加自动升级功能。它包含内建“应用程序更新向导”和内建多语言支持。 AutoUpgrader 能从web或内部网络下载更新文件。当前版本支持27种语言:英语,西班牙语,德语,法语,俄罗斯语,葡萄牙语,意大利语,荷兰语,丹麦语,芬兰语,汉语等。
UtilMind.AutoUpgrader.Pro.v4.6.7.for . Delphi.BCB.Full.Source.READ.NFO- SSGDelp hi/C Builder components for the development of the software you add automatic promotion functions. It contains built-in "applications Update Wizard" and built-in multi-language support. AutoUpgrader from the web or downloaded from the internal network update. The current version supports 27 languages : English, Spanish, German, French, Russian, Portuguese, Italian, Dutch, Danish, Finnish, Chinese and so on. (2007-06-04, Delphi, 359KB, 下载118次)

http://www.pudn.com/Download/item/id/292249.html
总计:267