摘要: 前几日在做一个项目的时候,需要做一个类似于sqlserver视图设计器的可浮动窗体,而且其容器是另一个窗体。为此研究了一下win32api,最后用setparent函数轻松解决了这个问题。setparent函数的说明如下: 函数功能:该函数改变指定子窗口的父窗口。 函数原型:hwnd setpalrent(hwnd hwndchild,hwnd hwndnewparent); 参数: hwndc......
摘要:
经典问题大集合1、作用域public,private,protected,以及不写时的区别 答:区别如下: 作用域 当前类 同一package 子孙类 其他package public √ √ √ √ protected √ √ √ × friendly √ √ × × private √ × × × 不写时默认为friendly......
推荐几个网上的C/C++资源
推荐几个网上的c/c++资源1.standard c,包括基本的语法定义,库函数参考 【程序编程相关:
Regsvr32 用法和错误消息的说明】 【推荐阅读:
我来谈谈网络设计,程序设计,网管设计三者】http://www-ccs.ucsd.edu/c/ 【扩展信息:
山外看山 —— 评The Art of 】 或者 the c library reference guide http://www.acm.uiuc.edu/webmonkeys/book/c_guide/ 2.the unix programming environment http://www.iu.hio.no/~mark/unix/unix_toc.html 或 the art of unix programming http://www.catb.org/~esr/writings/taoup/html/ 3.standard c++ library home page http://www.ccd.bnl.gov/bcf/cluster/pgi/pgc++_lib/stdlib.htm 4.the c book http://publications.gbdirect.co.uk/c_book/ 5.software engineering a.k.a. programming http://users.erols.com/blilly/programming/ 6.how to design programs : an introduction to computing and programming http://www.htdp.org/2002-05-09/book/curriculum.html 7.c elements of style http://www.oualline.com/style/ 书籍推荐(其实不需要我再说的,列在这里备忘) ...
下一页 摘要: 当visual c++长了尾巴,当borland c++ builder臃肿不堪,当钱包空空,难道在windows下再没有我们可以负担的起而又足够优秀的c++ ide? 当然不是。这个世界上还有一种东西叫开源。 本文的目的就是告诉你如何依靠开源软件搭建windows xp下的c++ ide(虽然搭配linux os是更好的选择,但毫无疑问的是,windows os至少在易用性上要远好于linux......