上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: ####1.创建桌面快捷方式: * CreateShortCut "$DESKTOP$.lnk" "$INSTDIR\bin$.exe" 删除桌面快捷方式:Delete "$DESKTOP$.lnk" 这里桌面考虑几种情况:当前用户桌面,所有用户桌面,管理员用户桌面 使用SetShellVarCon 阅读全文
posted @ 2021-03-12 13:35 朕在coding 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/m0_46653437/article/details/108464578 阅读全文
posted @ 2021-03-11 13:11 朕在coding 阅读(73) 评论(0) 推荐(0) 编辑
摘要: ###1.ASP.NET WebApi 跨域(Cors)配置 第一步:下载nuget包 Install-Package Microsoft.AspNet.WebApi.Cors 第二步:在webApiConfig 中配置代码如下 public static class WebApiConfig { 阅读全文
posted @ 2021-03-06 23:56 朕在coding 阅读(63) 评论(0) 推荐(0) 编辑
摘要: #####问题1.vue 项目npm install 报错 npm ERR! enoent undefined ls-remote -h -t ssh://git@github.com/sohee-lee7/Sq 解决办法是这样的: 不要直接在vscode的命令行中执行npm install,而是来 阅读全文
posted @ 2021-03-01 09:44 朕在coding 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 因为nuget包源地址问题导致还原nuget包出错,重新更新nuget包源头地址后,最后还原Nuget就解决了。 阅读全文
posted @ 2021-02-24 22:39 朕在coding 阅读(507) 评论(0) 推荐(0) 编辑
摘要: C#知识点: ####1.sendtoback()和bringtofront() 如下的代码: button2.Dock = DockStyle.Top; button1.SendToBack(); button1.Dock = DockStyle.Top; button3.Dock = DockS 阅读全文
posted @ 2021-02-24 08:43 朕在coding 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 转自:https://mp.weixin.qq.com/s/puZeIzQ6XCVNIFjrqSz7Tg 收藏:http://www.ruanyifeng.com/blog/2009/08/learning_javascript_closures.html 参考这位园友的文章:https://www 阅读全文
posted @ 2021-02-17 23:32 朕在coding 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 记录一次:entity framework提示ArgumentException: 无法确定存储版本;需要有效的存储连接或版本提示 问题的解决过程: #####问题描述: 跟代码是这里错误: #####最终解决方法: 添加数据实体模型: 更新完实体模型后又提示: 最后又操作如下,彻底解决问题: 阅读全文
posted @ 2021-02-10 23:15 朕在coding 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 问题描述:笔记本电脑设备管理器中无COM通讯口,解决方法:(转自:https://jingyan.baidu.com/article/da1091fb7f4d49027849d6af.html?qq-pf-to=pcqq.c2c) #####删除占用的COM口: 如果你想删除它,首先在运行中输入“r 阅读全文
posted @ 2021-02-03 13:20 朕在coding 阅读(6688) 评论(0) 推荐(0) 编辑
摘要: 新建一个winform程序: public partial class Form1 : Form { public Form1() { InitializeComponent(); txtQRInfo.Text = "SB2021020221500001"; btn_MakeQRCode_Click 阅读全文
posted @ 2021-02-02 21:56 朕在coding 阅读(997) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页