上一页 1 ··· 7 8 9 10 11
摘要: 例子代码 链接:https://pan.baidu.com/s/1fzMFawFsYi-CjMGzXF-9sA 提取码:3acn 新建一个Form1窗体,监听窗体大小变化事件、窗体关闭事件 /// <summary> /// 窗体大小监听 /// </summary> /// <param name 阅读全文
posted @ 2021-09-03 15:26 小杨观世界 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 示例代码 链接:https://pan.baidu.com/s/1a-6CoIjA_DGLGKpsGpMmDg 提取码:1xip 主要代码为 /// <summary> /// 行转列 /// </summary> /// <param name="dataTable">需要进行行转列的表(数据源) 阅读全文
posted @ 2021-09-01 19:57 小杨观世界 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 创建临时数据 with m as ( select '数字'TypeGroup,'1,2,3,4,5,6,7,8,9' info union all select '字母' TypeGroup,'a,b,c,d,e,f,g,h,i' info )select * into #temp from m 阅读全文
posted @ 2021-09-01 18:43 小杨观世界 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 使用组件 Interop.BarTender.dll 提取码:2bxq 打印 BarTender 文档 http://help.seagullscientific.com/2016/en/Subsystems/ActiveX/ActiveX.htm#printing_formats.htm 打印情况 阅读全文
posted @ 2021-08-29 08:36 小杨观世界 阅读(2527) 评论(1) 推荐(0) 编辑
摘要: private void Player(string pathName) { string path = $"{Application.StartupPath}\\{pathName}.wav"; //程序目录下 System.Media.SoundPlayer player = new Syste 阅读全文
posted @ 2021-08-28 16:41 小杨观世界 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 先查找占用5004开头的端口,命令:netstat -aon|findstr 5004 根据id查看程序,命令:tasklist|findstr "19532" 杀掉进程 taskkill /f /pid 19532 阅读全文
posted @ 2021-08-23 09:56 小杨观世界 阅读(204) 评论(0) 推荐(0) 编辑
摘要: --插入一下临时数据源 with m as( select '张三' name,'语文'course,'89'score union all select '张三' name,'数学'course,'100'score union all select '张三' name,'英语'course,'4 阅读全文
posted @ 2021-08-23 09:49 小杨观世界 阅读(1357) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11