上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页
摘要: cc21a重载成员操作符*,->, *,解引用操作符 ->箭头操作符,用于智能指针类 1 #include "pointer.h" //pointer.cpp 2 #include "string.h" 3 4 Pointer::Pointer() :ptr(0) {} 5 6 Pointer::P 阅读全文
posted @ 2019-12-26 16:20 txwtech 阅读(502) 评论(0) 推荐(0)
摘要: MFC中窗口启动后,CEdit编辑框默认光标位设置,顺序的调节方法 在编辑界面按下ctrl+D键,就会出现所有控件的Tab键顺序,按照自己想要的顺序依次点击控件,就可以重新安排顺序。数值1就是默认停留的光标位置。如果想把光标默认停留在2,则,先点数值1,然后点2,两个数值就交换位置了。——————— 阅读全文
posted @ 2019-12-25 21:46 txwtech 阅读(821) 评论(0) 推荐(0)
摘要: 研为电子6轴运动控制卡win10驱动无法安装问题,解决方法 研为电子6轴运动控制卡win10驱动无法安装问题,解决方法 iMC3xx2E系列运动控制卡使用手册V1.003 IMCdrv_Ins.exe无法安装 在 \IMCNet_V3.3\可编程通用软件_PC版\4-6轴增强版可编程通用运动控制器_ 阅读全文
posted @ 2019-12-24 10:34 txwtech 阅读(480) 评论(1) 推荐(0)
摘要: 511.exe 中的 0x78bb5dec (mfc90ud.dll) 处未处理的异常: 0xC0000005: 读取位置 0x00000020 时发生访问冲突 _AFXWIN_INLINE int CComboBox::SetCurSel(int nSelect) { ASSERT(::IsWin 阅读全文
posted @ 2019-12-24 10:32 txwtech 阅读(483) 评论(0) 推荐(0)
摘要: SetupPropertyPage.obj : error LNK2001: 无法解析的外部符号 "public: virtual struct CRuntimeClass * __thiscall CSetupPropertyPage64::GetRuntimeClass(void)const " 阅读全文
posted @ 2019-12-19 20:13 txwtech 阅读(1098) 评论(0) 推荐(0)
摘要: //mapName = mapString;// 原始- string mapName; CString strtemp,strtemp2; //char temp[XMAX_FILE_LENGTH + 1]; char temp[1024]; char print_internal_mapname 阅读全文
posted @ 2019-12-11 11:46 txwtech 阅读(1115) 评论(6) 推荐(0)
摘要: http://www.cinoscan.com/upload/2016063033256485.pdf cino A770键盘界面快速设定记录后缀删除添加换行回车操作方法 阅读全文
posted @ 2019-11-29 12:12 txwtech 阅读(327) 评论(4) 推荐(0)
摘要: c++深复制与浅复制区别代码示范vs2015-txwtech c++深复制与浅复制区别代码示范 区别: 深复制: CDemo B = A; B.str[0] = 'K';//B对象里面的元素修改后,A里面不会发生改变。 // 深复制 复制构造函数 CDemo(CDemo &obj1) { this- 阅读全文
posted @ 2019-11-29 12:05 txwtech 阅读(372) 评论(0) 推荐(0)
摘要: cc4a-c++类定义与struct定义方式代码示范 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 struct People_C //struct定义方式,没有指定public,默认就是public 6 { 阅读全文
posted @ 2019-11-15 16:13 txwtech 阅读(459) 评论(1) 推荐(0)
摘要: 一、去官网下载所需要的版本的安装包获取程序: https://www.visualstudio.com/zh-hans/downloads/ 三个版本,对应文件名称为: 社区版:vs_Community.exe 专业版:vs_Professional.exe 企业版:vs_Enterprise.ex 阅读全文
posted @ 2019-11-11 17:37 txwtech 阅读(575) 评论(0) 推荐(0)
上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 123 下一页