摘要: Private Sub CheckBox1_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox1.CheckedChanged ' 配置文件路径 Dim configFilePath As String = Path.C 阅读全文
posted @ 2024-12-20 07:50 令勾子 阅读(14) 评论(0) 推荐(0)
摘要: Tabcontrol类控件如果嵌入了FORM,像DATAGRID,TEXTBOX中的内容都无法用鼠标拖动选择,只能用CTRL+A全选 解决办法 将form.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None 就可以了~ 使用第三方控 阅读全文
posted @ 2024-12-09 10:41 令勾子 阅读(60) 评论(0) 推荐(0)
摘要: Sub 将信息写入日志中(日志内容) '判断日志文件夹是否存在,不存在就创建 If Not Directory.Exists(Application.StartupPath & "\log") Then Directory.CreateDirectory(Application.StartupPat 阅读全文
posted @ 2024-12-06 14:41 令勾子 阅读(26) 评论(0) 推荐(0)