随笔 - 6  文章 - 129  trackbacks - 0
<2024年3月>
252627282912
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 814161
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

06 2010 档案

PB 学习笔记

posted @ 2010-06-29 16:09 Ke 阅读(793) | 评论 (0)  编辑

PB 动态打开窗体,通过字符串指定窗口名称

posted @ 2010-06-16 20:08 Ke 阅读(2541) | 评论 (0)  编辑

PB 窗口居中
     摘要: environment le_environment
GetEnvironment(le_environment)
ii_ScreenH = PixelsToUnits(le_Environment.ScreenHeight, YPixelsToUnits!)
ii_ScreenW = PixelsToUnits(le_Environment.ScreenWidth, XPixelsToUnits!)
this.Move((ii_screenw - this.width)/2,(ii_screenh - this.height * 2)/2)  阅读全文

posted @ 2010-06-10 10:25 Ke 阅读(574) | 评论 (0)  编辑

PB系统函数 之 日期时间函数
     摘要: RelativeDate()
功能得到指定日期前多少天或后多少天的日期。
语法RelativeDate(date,n)
参数date:Date类型,指定基准日期n:integer类型,指定天数返回值Date。当n的值大于0时返回参数date指定日期后第n天的日期;当n的值小于0时返回参数date指定日期前第n天的日期。如果任何参数的值为NULL,则RelativeDate()函数返回NULL。
——————————————————————————–

RelativeTime()
功能得到指定时间前多少秒或后多少秒的时间,采用24小时制。
语法RelativeTime ( time, n )参数time:time类型,指定基准时间n:long类型,指定秒数返回值Time。当n的值大于0时返回参数time指定时间后第n秒的时间;当n 的值小于0时返回参数time指定时间前第n秒的时间。如果任何参数的值为NULL,则RelativeTime()函数返回NULL。
——————————————————————————–  阅读全文

posted @ 2010-06-09 14:52 Ke 阅读(5603) | 评论 (0)  编辑

PB String ( data, { format } )

posted @ 2010-06-09 14:24 Ke 阅读(11939) | 评论 (0)  编辑

PB报错: 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版本将 ntext 数据或仅使用 Unicode 排序规则的 Unicode 数据发送到客户端
     摘要: PB报错: 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版本将 ntext 数据或仅使用 Unicode 排序规则的 Unicode 数据发送到客户端  阅读全文

posted @ 2010-06-06 23:19 Ke 阅读(2469) | 评论 (0)  编辑

PB ImportFile导入数据

posted @ 2010-06-01 22:47 Ke 阅读(8576) | 评论 (0)  编辑

DataWindow.Processing 判断 DataWindow 对象的类型
     摘要: 可用 DataWindow.Processing 判断 DataWindow 对象的类型,dw的类型如下:
0 (Default) Form, group, query, or tabular
1 Grid
2 Label
3 Graph
4 Crosstab
5 Composite
7 RichText  阅读全文

posted @ 2010-06-01 16:08 Ke 阅读(1081) | 评论 (0)  编辑