上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 19 下一页
摘要: 1、安装包下载 nodejs16.14.2版本 https://nodejs.org/en/blog/release/v16.14.2 2. 解压之后更名文件夹位‘node’方便之后的操作 这里的原因还是因为之后方便命令行的操作 3. 移动node文件夹到系统盘下面的opt路径下 在node文件夹的 阅读全文
posted @ 2023-07-20 10:21 ziff123 阅读(2061) 评论(0) 推荐(1)
摘要: 1、查看串口设备名称 ls -l /dev/tty* 2、查看USB设备 lsusb 3、修改文件权限 a、直接将此文件改为所有用户可读写 chmod 777 /opt/1.txt r: 读 数字4w: 写 数字2x: 写 数字1 可用数字快速表示,如,就是可读,可写,可执行就是4+2+1=7‘77 阅读全文
posted @ 2023-07-20 09:12 ziff123 阅读(1405) 评论(0) 推荐(0)
摘要: access 查询报“提供程序无法确定 Object 值.例如,该行刚刚创建,未提供 Object 列的默认值,并且” System.InvalidOperationException: The provider could not determine the Object value. For e 阅读全文
posted @ 2023-04-28 15:39 ziff123 阅读(215) 评论(0) 推荐(1)
摘要: //引入命名空间:using System.Runtime.InteropServices; [DllImport("winspool.drv", CharSet = CharSet.Auto, SetLastError = true)] private static extern bool Set 阅读全文
posted @ 2023-04-20 13:50 ziff123 阅读(1190) 评论(0) 推荐(0)
摘要: 启动程序: string path="d:\\test.exe"; //外部winform程序 string args = "aa bb cc"; System.Diagnostics.Process.Start(path,args); //启动程序 外部winform程序test.exe接收参数: 阅读全文
posted @ 2023-04-04 16:33 ziff123 阅读(492) 评论(0) 推荐(0)
摘要: System.InvalidOperationException: 集合已修改;可能无法执行枚举操作。 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) 在 System.Collectio 阅读全文
posted @ 2023-03-30 09:22 ziff123 阅读(1401) 评论(0) 推荐(0)
摘要: CefSharp打开不安全的https站点时白屏解决办法: CefSettings settings = new CefSettings(); settings.CefCommandLineArgs.Add("--ignore-urlfetcher-cert-requests", "1");//证书 阅读全文
posted @ 2023-03-22 14:06 ziff123 阅读(869) 评论(0) 推荐(0)
摘要: dpkg是 Debian Packager 的简写。为 Debian 专门开发的套件管理系统,方便软件的安装、更新及移除。所有源自 Debian 的 Linux 发行版都使用 dpkg,例如 Ubuntu 、Knoppix 等。dpkg用于:对已下载到本地和已安装的软件包进行管理,同时能提供安装后的 阅读全文
posted @ 2023-03-17 11:45 ziff123 阅读(4287) 评论(0) 推荐(0)
摘要: 1、主机接上串口线 2、查看串口设备名称 ls -l /dev/tty* 结果划红线的就是我们接入的: 3、安装串口调试工具PuTTY sudo apt-get install putty 4、在开始菜单中打开PuTTY,填好参数,点击Open 5、串口返回结果 阅读全文
posted @ 2023-03-13 17:32 ziff123 阅读(5550) 评论(0) 推荐(0)
摘要: 1、安装串口 npm install --save serialport 2、安装node-gyp npm install -g node-gyp 3、安装electron-rebuild npm install --save-dev electron-rebuild 4、配置编译环境,需使用管理员 阅读全文
posted @ 2023-03-13 10:32 ziff123 阅读(1094) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 19 下一页