chai2020

导航

 

2024年8月21日

摘要: 1、定义 Dictionary<string, string> Dictionary<string, string> Hths = new Dictionary<string, string>(); 2、添加 add("","") Hths.Add(ht.Code, strWldwGs); 3、查找 阅读全文
posted @ 2024-08-21 13:48 反反西 阅读(45) 评论(0) 推荐(0)
 
摘要: https://www.zamzar.com/ ‌‌JPG: ‌特点‌:有损压缩,适合用于照片和需要高压缩比的场景。JPG文件通常比其他文件格式更小。 ‌应用场景‌:广泛应用于网页、社交媒体和电子设备中,适合分享和存储大量照片。 优点:文件大小较小;适合储存照片和其他复杂图像。 缺点:不支持透明度, 阅读全文
posted @ 2024-08-21 09:02 反反西 阅读(141) 评论(0) 推荐(0)
 

2024年8月19日

摘要: 在VSCode中打开扩展视图(快捷键为Ctrl+Shift+X)。 搜索并安装HTML插件,如“HTML CSS Support”或“HTML Snippets”。 安装完成后,在文件中创建一个新的HTML文件,输入!或html:5,插件会自动补全基本的HTML结构。‌3 阅读全文
posted @ 2024-08-19 11:20 反反西 阅读(426) 评论(0) 推荐(0)
 

2024年8月9日

摘要: (一) 下载Node.js:首先,访问Node.js的官方网站(https:odejs.org/),选择适合你操作系统的版本进行下载。对于‌Windows用户,可以选择.msi安装包进行安装。 安装Node.js:下载完成后,运行安装包,按照提示进行安装。在安装过程中,你可以选择自定义安装选项,但通 阅读全文
posted @ 2024-08-09 12:39 反反西 阅读(82) 评论(0) 推荐(0)
 

2024年7月4日

摘要: 属性: spinEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003; //设置边框样式 spinEdit1.EnterMoveNextControl = true; //但用户按Enter键时是否将焦 阅读全文
posted @ 2024-07-04 11:06 反反西 阅读(242) 评论(0) 推荐(0)
 

2024年6月4日

摘要: --1、判断是否存在汉字select * from 表名 where 列名 like '%[吖-座]%' --2、判断是否存在汉字以外的其他字符select * from 表名 where 列名 like '%[^吖-座]%' --3、判断字段中是否有数字、字母SELECT * FROM 表名 WH 阅读全文
posted @ 2024-06-04 10:28 反反西 阅读(812) 评论(0) 推荐(0)
 

2024年5月28日

摘要: https://blog.csdn.net/liangmengbk/article/details/135175029 阅读全文
posted @ 2024-05-28 15:33 反反西 阅读(31) 评论(0) 推荐(0)
 

2024年5月15日

摘要: public static bool IsNet35Installed() { // 检查注册表项以确定是否安装了.NET Framework 3.5 const string subkey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5"; 阅读全文
posted @ 2024-05-15 09:44 反反西 阅读(159) 评论(0) 推荐(0)
 

2020年5月27日

摘要: Constant Long Black = 0 // RGB( 0, 0, 0)Constant Long Dark_Red = 128 // RGB( 128, 0, 0)Constant Long Maroon = 128 // RGB( 128, 0, 0) - on dropdownCons 阅读全文
posted @ 2020-05-27 13:14 反反西 阅读(293) 评论(0) 推荐(0)