摘要:
vscode正在加载配置... 正在初始化包... 正在准备开发板... 正在验证... In file included from C:\Users\txwtech\Documents\Arduino\libraries\TJpg_Decoder\src/TJpg_Decoder.h:23:0, 阅读全文
摘要:
c#winform datagridview隐藏单元格的值 //隐藏单元格的值 private void dataGridView_front_section_storage_07_CellPainting(object sender, DataGridViewCellPaintingEventAr 阅读全文
摘要:
private void DGV_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.ColumnIndex >= 0 && DGV.Columns[e.ColumnIndex].Name == "字段名称 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/433461900 其实图表已经把功能成系列的引脚归类排列在一起了,根据注意事项翻译过来就是: GPIO0(D3):连接到NODEMCU为代表的FLASH按键开关上,作为输入时上拉,作为输出时是推荐作为输出引脚的。如果引脚被拉低则无法启动; 阅读全文
摘要:
QT Creator的project转换成Visual Studio的project 在windows10下,运行Qt Command Prompt。 输入命令行: qmake -tp vc XXX.pro 会生成文件XXX.vcxproj Visual Studio的project转成QT Cre 阅读全文
摘要:
Microsoft Visual C++ Runtime Library Debug Assertion Failed! Program: ...ware_demo_c++_2021-09-25\PCSoftware_demo\Debug\PCSoftware.exeFile: minkernel\ 阅读全文
摘要:
最常见的ProcessStartInfo启动 ProcessStartInfo info = new ProcessStartInfo(); info.FileName = @"路径\exe的文件名"; info.Arguments = ""; info.WindowStyle = ProcessW 阅读全文
摘要:
MFC-vc++点击一个按钮触发另外一个按钮的事件方法 void CPCSoftwareDlg::OnBnClickedButRs485test() { // TODO: 在此添加控件通知处理程序代码 OnBnClickedButtonSendmsg(); //调用另外一个按钮的点击事件 m_RS4 阅读全文
摘要:
一.介绍 RS-232-C是美国电子工业协会EIA(Electronic Industry Association)制定的一种串行物理接口标准。RS(Recommended Standard)是英文“推荐标准”的缩写,232为标识号,C表示修改次数。RS-232-C总线标准设有25条信号线,包括一个 阅读全文
摘要:
c#格式化浮点数保留小数位数方式 textBox_calc_value.Text = String.Format("{0:n1}", int_calc_data); //保留小数位1位 textBox_calc_value.Text = String.Format("{0:n2}", int_cal 阅读全文