上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

2013年10月3日

Mine Vison base on VC++ and procilica Gige Vison SDK

摘要: This is my first vision base on VC++6.0. I am so happy to record this time i succesfully create it by my seft. It is so important,i must write down some details i have across throughmore than 1 years.altought i am exactly lazy guy. Here are 3 (actually too many thing can talk about,but not must be). 阅读全文

posted @ 2013-10-03 23:07 song2013 阅读(284) 评论(0) 推荐(0) 编辑

2013年9月22日

error LNK2001: unresolved external symbol "public: virtual

摘要: 1) Mine solution : project-setting :static lib to shared dll .then ok.找不到secondchar的定义, 你是否没有把包含secondchar的*.h或*.lib加入到你项目? 以下是可能产生LNK2001错误的原因: 一.由于编码错误导致的LNK2001。 1.不相匹配的程序代码或模块定义(.DEF)文件能导致LNK2001。例如, 如果在C++ 源文件内声明了一变量“var1”,却试图在另一文件内以变量“VAR1”访问该变量,将发生该错误。 2.如果使用的内联函数是在.CPP文件内定义的,而不是在头... 阅读全文

posted @ 2013-09-22 23:07 song2013 阅读(744) 评论(0) 推荐(1) 编辑

2013年9月21日

sampleviewer add menu item error 'assert'

摘要: 可以跟踪到 mfc提供的源代码内部,(注:如果打开了mfc源代码,设置了断点,但是跟不进去,那就需要更新PDB文件,具体网上搜)打开 wincore.cpp文件(D:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\src\mfc)。查看 312 行,所在函数如下:CWnd* PASCAL CWnd::FromHandle(HWND hWnd){ CHandleMap* pMap = afxMapHWND(TRUE); //create map if not exist ASSERT(pMap != NULL); CWnd* 阅读全文

posted @ 2013-09-21 20:24 song2013 阅读(283) 评论(0) 推荐(0) 编辑

vc 常用语句

摘要: 1)CMainFrame* pmainframe=(CMainFrame*)AfxGetMainWnd();CChildFrame *m_finderframe=(CChildFrame*)pmainframe->GetActiveFrame();CImageView *m_View=(CImageView*)pmainframe->GetActiveFrame()->GetActiveView();CXXXView*pV=(CXXXView*)m_wndSplitter.GetPane(i,j);2)menu1\ON_COMMAND(ID_creat_template, O 阅读全文

posted @ 2013-09-21 13:06 song2013 阅读(442) 评论(0) 推荐(0) 编辑

VC error link

摘要: 错误1:LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main在project-setting-link里找到project options 去掉里面的/subsystem:console错误2:nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endt...将工程设置为Using MFC in a static library错误3:libcmtd.lib(crt0.obj) : error LNK2001: unr 阅读全文

posted @ 2013-09-21 12:31 song2013 阅读(268) 评论(0) 推荐(0) 编辑

2013年9月15日

深度解析VC中的消息

摘要: 消息是指什么?消息系统对于一个win32程序来说十分重要,它是一个程序运行的动力源泉。一个消息,是系统定义的一个32位的值,他唯一的定义了一个事件,向Windows发出一个通知,告诉应用程序某个事情发生了。例如,单击鼠标、改变窗口尺寸、按下键盘上的一个键都会使Windows发送一个消息给应用程序。消息本身是作为一个记录传递给应用程序的,这个记录中包含了消息的类型以及其他信息。例如,对于单击鼠标所产生的消息来说,这个记录中包含了单击鼠标时的坐标。这个记录类型叫做MSG,MSG含有来自windows应用程序消息队列的消息信息,它在Windows中声明如下:01.typedefstructtagMs 阅读全文

posted @ 2013-09-15 23:15 song2013 阅读(206) 评论(0) 推荐(0) 编辑

2013年9月12日

programming+windows+MFC

摘要: 1)CMyApp declares no data members2)CWinApp::InitInstance run after application build but before the window is create2.1InitInstance is the perfect place to perform initializations that need to be done each time the program starts(Just like VB's formload?) 2.2m_pMainWnd = new CMainWindow; (in Ini 阅读全文

posted @ 2013-09-12 20:36 song2013 阅读(286) 评论(0) 推荐(0) 编辑

2013年9月10日

VC 常见问题百问

摘要: http://www.cnblogs.com/cy163/archive/2006/06/19/429796.html经典Vc书Charles Petzold 的《Programming Windows》 -- 入门Jeffrey Richter 的《Advanced Windows》 -- 经典中的经典,我太喜爱这本书了Jeffrey Richter 的《Windows 95 : A Developer's Guide》 -- 学HookMatt Pietrek 的 《Windows 95 System Programming SECRETS》 -- 学PEStanley Lippm 阅读全文

posted @ 2013-09-10 23:40 song2013 阅读(201) 评论(0) 推荐(0) 编辑

2013年9月8日

vc如何让打开的子窗口默认是最大化的

摘要: vc如何让打开的子窗口默认是最大化的浏览:3554|更新:2011-04-09 17:0410加入杂志加入杂志摘要:关于vc如何让打开的子窗口默认是最大化的深入研究。步骤/方法1 MDI子窗口一启动就最大化2 方法一: 在CChildFrame::PreCreateWindow(CREATESTRUCT& cs)函数中,加了 cs.style |= WS_VISIBLE|WS_MAXIMIZE;,可以实现了3 方法二: 用ClassWizard为CChildFrame类添加ActiveFrame消息 void CChildFrame::ActivateFrame(int nCmd... 阅读全文

posted @ 2013-09-08 21:37 song2013 阅读(335) 评论(0) 推荐(0) 编辑

2013年8月18日

VC中画矩形框 & polyline画多点

摘要: 搞自动化会经常遇到一个问题就是记录实时的曲线,通常做法是首先将数据保存在一个记事本中,或数据库。使用VB或DELPHI可以直接调用现成的控件画图,只是控制起来不方便。所以使用VC就需要程序来控制。在网上搜了好多就是 没有一个完整的例子。下面就是使用VC6.0实现画任意曲线的方法之一。void CLineView::OnLine(){ // TODO: Add your command handler code here POINT pts[5]; long a[5]={20,50,60,10,180}; long b[5]={10,20,30,40,50}; for(int i=0;i... 阅读全文

posted @ 2013-08-18 21:26 song2013 阅读(1742) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

导航