摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2022-02-08 12:12 212的s 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 背景:金蝶dll是.net framework, 在.net core 项目不兼容,这里说明控制台的方式 (另一种做法,再弄一个.net framework网站项目负责调用金蝶服务) 主程序 .Net Core private static string CMDRun(string command) 阅读全文
posted @ 2022-02-08 10:24 212的s 阅读(1206) 评论(0) 推荐(0) 编辑
摘要: //可以放到timer里执行 private void button2_Click(object sender, EventArgs e) { string mainTitle = System.Configuration.ConfigurationManager.AppSettings["main 阅读全文
posted @ 2022-01-19 11:00 212的s 阅读(755) 评论(2) 推荐(0) 编辑
摘要: 网上搜到很多理论,没有实际的例子,自己尝试写一写 .Net Framework 4.5 VS 2017 WinForm 项目 using System; using System.Collections.Generic; using System.ComponentModel; using Syst 阅读全文
posted @ 2022-01-13 11:45 212的s 阅读(27) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 设置行距 /// </summary> /// <param name="ctl">控件</param> /// <param name="dyLineSpacing">间距,初始值至少大于(font.size+1)*30</param> public stati 阅读全文
posted @ 2022-01-13 11:26 212的s 阅读(426) 评论(0) 推荐(0) 编辑
摘要: //行高至少大于20 public static void SetComboBoxLineHeight(ComboBox list, int itemHeight) { list.DropDownStyle = ComboBoxStyle.DropDownList; list.ItemHeight 阅读全文
posted @ 2022-01-13 11:26 212的s 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 查看用户名git config user.name 查看密码git config user.password 查看邮箱git config user.email 如果不对,重新设置用户名和邮箱 git config --global user.name "xxx"git config --globa 阅读全文
posted @ 2022-01-06 10:38 212的s 阅读(1486) 评论(0) 推荐(0) 编辑
摘要: begin tran begin 执行SQL开始 update Audioset Name =3 执行SQL结束 if @@ROWCOUNT>1 begin rollback end else begin commit end end 阅读全文
posted @ 2021-12-21 16:39 212的s 阅读(34) 评论(0) 推荐(0) 编辑
摘要: static class MyParallel { //4.0及以上用Task, Task的背后的实现也是使用了线程池线程 //static List<Task> tasks = new List<Task>(); //4.0以下用Thread static List<Thread> tasks = 阅读全文
posted @ 2021-12-16 16:21 212的s 阅读(221) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CA.TCP { using System.Ne 阅读全文
posted @ 2021-12-10 14:08 212的s 阅读(743) 评论(0) 推荐(0) 编辑