上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 125 下一页
摘要: Microsoft Visual C++ Runtime Library Debug Assertion Failed! Program: ...ware_demo_c++_2021-09-25\PCSoftware_demo\Debug\PCSoftware.exeFile: minkernel\ 阅读全文
posted @ 2023-07-04 14:06 txwtech 阅读(196) 评论(0) 推荐(0)
摘要: 最常见的ProcessStartInfo启动 ProcessStartInfo info = new ProcessStartInfo(); info.FileName = @"路径\exe的文件名"; info.Arguments = ""; info.WindowStyle = ProcessW 阅读全文
posted @ 2023-07-04 10:50 txwtech 阅读(824) 评论(0) 推荐(0)
摘要: MFC-vc++点击一个按钮触发另外一个按钮的事件方法 void CPCSoftwareDlg::OnBnClickedButRs485test() { // TODO: 在此添加控件通知处理程序代码 OnBnClickedButtonSendmsg(); //调用另外一个按钮的点击事件 m_RS4 阅读全文
posted @ 2023-07-03 19:00 txwtech 阅读(268) 评论(0) 推荐(0)
摘要: 一.介绍 RS-232-C是美国电子工业协会EIA(Electronic Industry Association)制定的一种串行物理接口标准。RS(Recommended Standard)是英文“推荐标准”的缩写,232为标识号,C表示修改次数。RS-232-C总线标准设有25条信号线,包括一个 阅读全文
posted @ 2023-06-25 22:13 txwtech 阅读(10333) 评论(0) 推荐(0)
摘要: c#格式化浮点数保留小数位数方式 textBox_calc_value.Text = String.Format("{0:n1}", int_calc_data); //保留小数位1位 textBox_calc_value.Text = String.Format("{0:n2}", int_cal 阅读全文
posted @ 2023-06-25 08:33 txwtech 阅读(3396) 评论(0) 推荐(0)
摘要: System.InvalidOperationException:“在 ServiceModel 客户端配置部分中,找不到引用协定“olding_interface.odingValueServiceSoap”的默认终结点元素。这可能是因为未找到应用程序的配置文件,或者是因为客户端元素中找不到与此协 阅读全文
posted @ 2023-06-15 15:25 txwtech 阅读(114) 评论(0) 推荐(0)
摘要: c#tableLayoutPanel 上下行无法拖动变宽窄解决方法 选中后编辑行和列--选择行--如果选择的《绝对》,就无法改变。可选择设置百分比或者自动调整大小(根据放入的控件大小,控件拖大小,tableLayout行随之改变) 翻译 搜索 复制 阅读全文
posted @ 2023-05-31 10:03 txwtech 阅读(859) 评论(0) 推荐(0)
摘要: 远程电脑服务器上挂TCP服务端--其它电脑客户端无法连接解决方法: 关闭防火墙 翻译 搜索 复制 阅读全文
posted @ 2023-05-31 09:21 txwtech 阅读(61) 评论(0) 推荐(0)
摘要: python_test_0528 print("pp49_0528") print(str(10000)) ''' 字符串方法 ''' #find str1 = "with a moo-moo" pos = str1.find("moo") print("number"+repr(8)) #prin 阅读全文
posted @ 2023-05-28 21:53 txwtech 阅读(31) 评论(0) 推荐(0)
摘要: # 格式化字符串--P45 format2 = "Pi with three decimals:%.3f" from math import pi print(format2 % pi) # 字符串模板 from string import Template s = Template('$x,glo 阅读全文
posted @ 2023-05-28 15:45 txwtech 阅读(20) 评论(0) 推荐(0)
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 125 下一页