上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 43 下一页

2022年9月27日

该文被密码保护。 阅读全文
posted @ 2022-09-27 02:07 westsoft 阅读(0) 评论(0) 推荐(0)

2022年9月7日

摘要: 出生就是牛马结局 人到中年,没有亲人才有统战价值。 ​ 关注 50 人赞同了该回答 本人不善言辞,现在给大家一个立竿见影的方法让鼻塞症状消失,这个方法让我的十八年老过敏性鼻炎不再苦恼。以下的内容请仔细看好了。 呼气,直到肺部排空,把鼻子和嘴巴闭上,走路。 大约30-80步,因人而异。 一定要憋住气, 阅读全文
posted @ 2022-09-07 23:03 westsoft 阅读(104) 评论(0) 推荐(0)

2022年6月23日

摘要: Peggy讲解牛津3级 https://www.kuwo.cn/album_detail/5244108 Peggy讲解牛津2级 https://www.kuwo.cn/album_detail/5244109 阅读全文
posted @ 2022-06-23 16:58 westsoft 阅读(50) 评论(0) 推荐(0)

2022年5月30日

该文被密码保护。 阅读全文
posted @ 2022-05-30 01:45 westsoft 阅读(1) 评论(0) 推荐(0)

2022年5月5日

该文被密码保护。 阅读全文
posted @ 2022-05-05 03:02 westsoft 阅读(4) 评论(0) 推荐(0)
 
该文被密码保护。 阅读全文
posted @ 2022-05-05 03:02 westsoft 阅读(0) 评论(0) 推荐(0)

2022年4月24日

该文被密码保护。 阅读全文
posted @ 2022-04-24 11:07 westsoft 阅读(1) 评论(0) 推荐(0)

2021年12月1日

该文被密码保护。 阅读全文
posted @ 2021-12-01 00:32 westsoft 阅读(6) 评论(0) 推荐(0)

2021年11月11日

该文被密码保护。 阅读全文
posted @ 2021-11-11 13:36 westsoft 阅读(0) 评论(0) 推荐(0)

2021年10月23日

摘要: 阅读全文
posted @ 2021-10-23 11:57 westsoft 阅读(155) 评论(0) 推荐(0)

2021年10月19日

摘要: 生成单据编号的存储过程 USE [crm2] GO /****** Object: StoredProcedure [dbo].[GetBillsID] Script Date: 09/22/2018 15:13:35 ******/ SET ANSI_NULLS ON GO SET QUOTED_ 阅读全文
posted @ 2021-10-19 22:12 westsoft 阅读(152) 评论(0) 推荐(0)
 
摘要: cxgrid中回车键光标移到下列 OptionsBehavior.GoToNextCellOnEnter:=True; 更完善的回车 可以在焦点到了最后一列再回车时有下一行则移到下一行的第一列,没有下一行则新增记录并移到第一列 procedure TK_XSD_Form.cxGrid1DBTable 阅读全文
posted @ 2021-10-19 22:11 westsoft 阅读(120) 评论(0) 推荐(0)
 
摘要: cxVerticalGrid赋值是实时更新 procedure TForm1.cxVerticalGrid1Edited(Sender: TObject;ARowProperties: TcxCustomEditorRowProperties);beginif Assigned(cxVertical 阅读全文
posted @ 2021-10-19 22:07 westsoft 阅读(148) 评论(0) 推荐(0)
 
摘要: 1、对TcxGrid创建多个Level 2、对TcxGrid的TcxGridLevelOptions的TabsForEmptyDetail设置为True 3、再设置DetailTabsPosition的方向为:dtpTop或则dtpLeft 4、cxGrid的rootleveloptions属性下的 阅读全文
posted @ 2021-10-19 22:06 westsoft 阅读(79) 评论(0) 推荐(0)
 
摘要: cxgrid属性说明,每次用的时候费时费力查找。 由层得到数据表名: procedure TFB_PatientWaiting.cxgrdbtblvwGrid1DBTableView_MyPatienWaitingDblClick( Sender: TObject); var tmp_ifGHD : 阅读全文
posted @ 2021-10-19 22:04 westsoft 阅读(331) 评论(0) 推荐(0)
 
摘要: 做一个平均数,合计数的sql查询 select score as '成绩' ,name as '姓名' from studentsUNION ALLselect AVG(score) from students; 在最后一行显示平均数; select score as '成绩' ,name as ' 阅读全文
posted @ 2021-10-19 22:03 westsoft 阅读(201) 评论(0) 推荐(0)
 
摘要: FDMemTable 提示操作速度尤其是循环 with FDMemTable1 do begin DisableControls; //切断数据感知控件 try Open; //打开 //定义Field fld_Id := TIntegerField(FieldByName('Id')); fld_ 阅读全文
posted @ 2021-10-19 21:56 westsoft 阅读(164) 评论(0) 推荐(0)
 
摘要: 手机号码验证 if (not TRegEx.IsMatch(Edit1.Text, '^[0-9]{11}')) or (length(Edit1.Text) <> 11) then // 11位数字,否则不合格 begin ShowMessage('请输入正确的11位手机号码'); exit; e 阅读全文
posted @ 2021-10-19 21:55 westsoft 阅读(112) 评论(0) 推荐(0)
 
摘要: TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的。 常规的用法大家都知道,现在来讨论它的一些高级的用法。 1、CommaText 2、Delimiter &DelimitedText 3、Names &Values &ValueFromIndex 先看第一个:CommaTe 阅读全文
posted @ 2021-10-19 21:54 westsoft 阅读(400) 评论(0) 推荐(0)
 
摘要: 取字符串长度 //取字符串长度 function Len(const value: string): integer; begin if Value='' then result:= 0 else result:= PInteger(Integer(Value)-4)^; end; 阅读全文
posted @ 2021-10-19 21:49 westsoft 阅读(102) 评论(0) 推荐(0)
 
该文被密码保护。 阅读全文
posted @ 2021-10-19 21:49 westsoft 阅读(0) 评论(0) 推荐(0)
 
摘要: 1、USER :DateUtils 2、使用 StartOfTheMonth 和 EndOfTheMonth 函数获取即可; procedure TForm1.btn1Click(Sender: TObject); begin mmo1.Lines.Add(FormatDateTime('yyyy- 阅读全文
posted @ 2021-10-19 21:48 westsoft 阅读(652) 评论(0) 推荐(0)
 
摘要: SQL Server 断开某个数据库所有连接(还原的时候需要)转自用保留 问题描述: SQL Server数据库备份还原后,在数据库名称后会出现“受限制访问”字样 解决办法: 右键点击数据库 -> 属性 -> 选项 -> 状态 -> 限制访问 -> 选择Multiple -> 确定。 问题描述: 在 阅读全文
posted @ 2021-10-19 21:44 westsoft 阅读(276) 评论(0) 推荐(0)

2021年8月24日

摘要: 在企业管理器中修改表结构,提示“超时时间已到。在操作完成之前超时时间已过或服务器未响应” 通过修改“表设计器和数据库设计器”来解决这个问题。 工具->选项->设计器->表设计器和数据库设计器,将默认30秒,改成600秒或更大值。 解决问题后,再改回30秒。 阅读全文
posted @ 2021-08-24 00:24 westsoft 阅读(358) 评论(0) 推荐(0)

2021年8月23日

摘要: 参考thinkphp3.2手册 专题=>restful; REST(Representational State Transfer表述性状态转移)是一种针对网络应用的设计和开发方式,可以降低开发的复杂性,提高系统的可伸缩性.restful借口的实现必不可少的便是路由的运用。启用路由:在Applica 阅读全文
posted @ 2021-08-23 17:11 westsoft 阅读(396) 评论(0) 推荐(0)

2021年8月14日

该文被密码保护。 阅读全文
posted @ 2021-08-14 11:16 westsoft 阅读(1) 评论(0) 推荐(0)
 
摘要: 支付宝:https://docs.open.alipay.com/194/106039/ 用户付款码,25-30 开头的长度为 16-24 位的数字,实际字符串长度以开发者获取的付款码长度为准;付款码使用一次即失效 微信:https://pay.weixin.qq.com/wiki/doc/api/ 阅读全文
posted @ 2021-08-14 11:14 westsoft 阅读(2816) 评论(0) 推荐(1)
 
摘要: 微信和支付宝付款码条码规则 阳光男孩joe 2019-01-10 14:35:03 10857 收藏 1分类专栏: android版权 android专栏收录该内容42 篇文章0 订阅订阅专栏微信条码规则:用户付款码条形码规则:18位纯数字,以10、11、12、13、14、15开头支付宝条码规则:付 阅读全文
posted @ 2021-08-14 10:43 westsoft 阅读(1444) 评论(0) 推荐(0)

2021年8月13日

该文被密码保护。 阅读全文
posted @ 2021-08-13 23:43 westsoft 阅读(0) 评论(0) 推荐(0)

2021年3月8日

摘要: https://developer.aliyun.com/mirror/ http://mirrors.aliyun.com/ubuntu-releases/18.04/ 阅读全文
posted @ 2021-03-08 10:00 westsoft 阅读(455) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 43 下一页