html5学习笔记
未完结,随时更新
这是我学习bootstrap的练习过程,记录下来。当前版本 v4.0.0-beta.2
网上摘录的信息,留用备查。
涉及MFC对话框的常用操作。
网上摘录的信息,留用备查。
涉及MFC对话框的常用操作。
非模态对话框相对于模态对话框,他的创建和销毁过程和模态对话框有一定的区别
先看一下MSDN的原文:
When you implement a modeless dialog box, always override the OnCancel member function and call DestroyWindow from within it. Don’t call the base class CDialog::OnCancel, because it calls EndDialog, which will make the dialog box invisible but will not destroy it. You should also override PostNcDestroy for modeless dialog boxes in order to delete this, since modeless dialog boxes are usually allocated with new. Modal dialog boxes are usually constructed on the frame and do not need PostNcDestroy cleanup.
非模态对话框相对于模态对话框,他的创建和销毁过程和模态对话框有一定的区别
先看一下MSDN的原文:
When you implement a modeless dialog box, always override the OnCancel member function and call DestroyWindow from within it. Don’t call the base class CDialog::OnCancel, because it calls EndDialog, which will make the dialog box invisible but will not destroy it. You should also override PostNcDestroy for modeless dialog boxes in order to delete this, since modeless dialog boxes are usually allocated with new. Modal dialog boxes are usually constructed on the frame and do not need PostNcDestroy cleanup.
这是一本综合成功者的学习经验的书,书中列举了伟人的学习方法,有一定的参考意义。贵在实践。
推荐阅读,因为本书是以参考的方式提出的建议,所以需要读者有一定的辨识能力,有一定的自我认知能力,剩下的就是实际动手能力了。
使用vs2017编译libcurl和openssl静态库。
因为用到了https相关操作所以需要libcurl支持ssh,在编译openssl的过程中遇到些小麻烦,所以记录下来。
openssl1.1.x有了些变化,附带的帮助文件,信息量不小,时间有限,暂时使用openssl1.0.x来编译。
记录一下看到的资源,学习的时候备用。