Delphi 动态添加控件和批量添加控件

添加控件 var t_image: TIMAGE; begin //生成1个控件 t_image := timage.Create(self); t_image.Parent := Form1; t_image.Picture.LoadF...

mysql分组统计班级人数及批量修改收据编号

批量修改收据编号 update `sj_main` set `jf_id`=concat('202100',SUBSTRING(`jf_id`, -4)); update `sj_mx` set `sj_id`=concat('202100',SUBSTRING(`sj_...

PHP实现验证码功能【转】

登录页面代码login: <!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>登陆</title> </head> <body> ...

DELPHI XML转JSON

GITHUB:https://github.com/Ronald-TR/XML-To-JSON 官方demo: var iVariable : IDataBindingXMLObject; sJSON : string; begin ...