摘要: APScheduler全程为Advanced Python Scheduler,是一款轻量级的Python任务调度框架。它允许你像Cron那样安排定期执行的任务,并且支持Python函数或任意可调用的对象。 安装APScheduler 可以使用pip工具安装: pip install apscheduler 或在Pypi上下载最新的源码包(https://pypi.python.org/pypi/... 阅读全文
posted @ 2015-09-17 15:30 h2z 阅读(3940) 评论(0) 推荐(1)
摘要: Remote debugging lets you debug a RAD Studio application running on a remote computer. Once the remote debug server is running on the remote computer, 阅读全文
posted @ 2015-09-16 15:16 h2z 阅读(453) 评论(0) 推荐(0)
摘要: 用PAServer调试的话会产生一个默认user-connectionname的文件夹,且这个文件夹不能自定义。因此无法使调试的dll文件生成到host主程序所在的文件夹下而导致无法调试。 变通方法: 在环境变量中增加user-connectionname的文件夹所在的路径。经测试可行。 阅读全文
posted @ 2015-09-15 15:58 h2z 阅读(670) 评论(0) 推荐(0)
摘要: 转载:http://blogs.embarcadero.com/jimtierney/2009/04/06/31461/DataSnap Server Method Stream ParametersThis is a continuation of my posts on DataSnap ser... 阅读全文
posted @ 2015-09-11 16:13 h2z 阅读(436) 评论(0) 推荐(0)
摘要: DataSnap可以直接传递和返回TStream类型的参数,这点是很方便的。但是很多人发现好像大小稍微大点就工作不正常了,就变相使用其它类型转换来转换去,这样便利性就失去了。 官方有篇博客很详细的介绍了stream的使用,英文好的可以去看下DataSnap Server Method Stream 阅读全文
posted @ 2015-09-11 15:58 h2z 阅读(912) 评论(0) 推荐(0)
摘要: 转载:http://www.cnblogs.com/zhangdongsheng/p/3411056.html 每次要远程调试的时候都要看半天的xe2英文帮助文档,今天正好有点时间,把它写下来。 一、概述: 首先说明一下,c++ builder 远程调试有两种方式的,一种是被称为是老式的调试方法,这种方法是在远程机器上安装Debugger 也就是其实也就是运行PAServer的rmtdebug16... 阅读全文
posted @ 2015-09-09 12:01 h2z 阅读(436) 评论(0) 推荐(0)
摘要: 一、下载Graphics安装包 官网:www.graphics32.org 下载地址:http://sourceforge.net/projects/graphics32/files/graphics32/ 二、修改编译文件GR32_Compiler.inc 前面插入相同的代码 并将VER260 改 阅读全文
posted @ 2015-09-07 09:45 h2z 阅读(1091) 评论(0) 推荐(0)
摘要: yum install httpd #根据提示,输入Y安装即可成功安装 systemctl start httpd.service #启动apache systemctl stop httpd.service #停止apache systemctl restart httpd.service #重启 阅读全文
posted @ 2015-09-06 11:28 h2z 阅读(255) 评论(0) 推荐(0)
摘要: 环境: 1.win10 64位 2.delphi xe8 3.python2.7 4.python4delphi (svn 2015-03-21 发布的83版本号) 5.lxml 3.4.4(通过pip 安装的) 6.pandas 0.16.2 错误现象:1.找不到指定的DLL 2.初始化dll失败 3.ImportError: ... 阅读全文
posted @ 2015-08-29 13:08 h2z 阅读(874) 评论(0) 推荐(0)
摘要: 详细看demo25的代码 These techniques are demonstrated in Demo25 in the examples folder of your Python for Delphi distribution. The old vs. the new ways. Because Delphi 6 has custom variants, they can point t... 阅读全文
posted @ 2015-08-27 17:00 h2z 阅读(1079) 评论(0) 推荐(0)