博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pb设计笔记
阅读量:4981 次
发布时间:2019-06-12

本文共 446 字,大约阅读时间需要 1 分钟。

1、一个函数里面尽量不要太多直接sql语句,可以用datastore或execute immediate

2、把数据复制到剪贴板  clipboard()

3、数据窗口下拉的时候,如果出现同名,下拉id是靠前的代码,所以名称设计的时候是加一计算列:名称+代码,这样可以防止不必要的bug

4、today()  本机日期  now()  本机时间

5、left,right,mid,pos,len 单字节获取字符,leftw,rightw,midw,posw,lenw,双字节获取字符,如果双字节用单字节获取字符可能会出现乱码?

  rightw(str,1)=right(str,2) or irghtw(str,1)=right(str,1)    说明最后一个非乱码

6、字符串取出来后计算换行位置,在该位置插入个空格。PB对于连续的英文和数字是不换行的,估计是因为判断该字符是个完整的单词。

 

转载于:https://www.cnblogs.com/ydj0208/p/6036872.html

你可能感兴趣的文章
免交互批量分发公钥的实现
查看>>
在Python脚本中调用Django环境
查看>>
Django Rest Framework
查看>>
orm字段类型使用
查看>>
saltstack安装使用
查看>>
centos 下 yum安装python3
查看>>
cmdb资产管理2
查看>>
Python 命令行工具 argparse 模块使用详解
查看>>
jQuery和使用oninput事件
查看>>
es学习
查看>>
anaconda使用
查看>>
python中分页使用
查看>>
爬虫学习推荐目录
查看>>
[CSS] Change the Alignment of a Single Flexed Item with 'align-self'
查看>>
[Dart] Capture and Handle Data Sequences with Streams in Dart
查看>>
[Dart] splitMapJoin
查看>>
[Angular] Show a Loading Indicator for Lazy Routes in Angular
查看>>
[HTML5] Lazyload below the fold images and iframes with native browser lazy-loading
查看>>
[HTML5] Add Semantic Styling to the Current Page of a Navigation Item with aria-current
查看>>
[React Native] Up & Running with React Native & TypeScript
查看>>