摘要: 操作MySql时出现:下文 0xb0cf20 转换为 COM 上下文 0xb0ce68,这种状态已持续 60 秒。拥有目标上下文/单元的线程很有可能执行的是非泵式等待或者在不发送 Windows 消息的情况下处理一个运行时间非常长的操作。这种情况通常会影响到性能,甚至可能导致应用程序不响应或者使用的 阅读全文
posted @ 2025-04-10 15:18 KevinSteven 阅读(16) 评论(0) 推荐(0)
摘要: 1.打开代码所在本地文件夹。右键鼠标选择Git Base Here,打开Git命令输入框界面。并输入git init ,初始化文件夹代码 2.输入git add . 将当前项目加入缓存区 3.输入 ,添加文件注释("first commit"根据实际需求做更改) 4.输入远程仓库地址 git rem 阅读全文
posted @ 2025-02-06 17:42 KevinSteven 阅读(53) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_42881421/article/details/140184354 阅读全文
posted @ 2024-10-26 17:20 KevinSteven 阅读(25) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_39654101/article/details/131720116 阅读全文
posted @ 2024-10-26 17:19 KevinSteven 阅读(13) 评论(0) 推荐(0)
摘要: 问题描述: FlowLayoutPanel 在win10可以鼠标滚轮 上下滚动图片,在win7却不行。 原因: FlowLayoutPanel默认不支持鼠标滚轮MouseWheel事件,在win10系统中,win10可以自动设置FlowLayoutPanel的焦点,实现滚轮滚动效果。win7不能自动 阅读全文
posted @ 2024-10-11 18:20 KevinSteven 阅读(106) 评论(0) 推荐(0)
摘要: //数据压缩成Zip再发送 public static string ZipBasebyte(string xml) { byte[] bytesToCompress = Encoding.GetEncoding("GBK").GetBytes(xml); MemoryStream ms = new 阅读全文
posted @ 2024-06-15 15:49 KevinSteven 阅读(144) 评论(0) 推荐(0)
摘要: /// <summary> /// 除去指定区域水印 /// </summary> /// <param name="sourceImagePath"></param> /// <param name="outputImagePath"></param> public static void Rem 阅读全文
posted @ 2024-06-15 15:43 KevinSteven 阅读(29) 评论(0) 推荐(0)
摘要: 使用NuGet程序包下载安装 O2S.Components.PDFRender4NET.dll using O2S.Components.PDFRender4NET; //引用 O2S.Components.PDFRender4NET.dll /// <summary> /// PDF转JPEG / 阅读全文
posted @ 2024-06-15 15:42 KevinSteven 阅读(44) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/wangjinya/p/14535023.html 阅读全文
posted @ 2023-10-21 15:53 KevinSteven 阅读(26) 评论(0) 推荐(0)
摘要: 设置问用户名和邮箱后 使用以下命令,下载线上代码 git clone [代码URL] 上传代码 git add -A git commit -m [文件名称] git push -u origin master 阅读全文
posted @ 2023-10-04 16:26 KevinSteven 阅读(36) 评论(0) 推荐(0)