HWND_MESSAGE Message-Only Windows A message-only window enables you to send and receive messages. It is not visible, has no z-order, cannot be enumera Read More
posted @ 2017-07-06 20:39 findumars Views(2244) Comments(0) Diggs(0)
This overview discusses features of windows such as window types, states, size, and position. Window Types Overlapped Windows Pop-up Windows Child Win Read More
posted @ 2017-07-06 20:23 findumars Views(554) Comments(0) Diggs(0)
编译BOOST库 bjam stage --toolset=qcc --without-graph --without-graph_parallel --without-math --without-mpi --without-python --without-serialization --wit Read More
posted @ 2017-07-06 18:55 findumars Views(1585) Comments(0) Diggs(0)
在编程中,动态数组为我们处理数据带来了很大的方便。Windows API函数也为增强程序的功能提供了强有力的保障。当我们在使用这些动态数组及API函数时,常常需要动态分配内存空间,这样动态数组才能被我们使用,API函数才能正确的返回结果。因此,这些函数是必不可少的。 1.AllocMem 功能说明: Read More
posted @ 2017-07-06 18:53 findumars Views(434) Comments(0) Diggs(0)
软件大多都要对文件、磁盘进行操作。熟悉掌握这些函数可以帮助你轻松实现创建、删除、保存文件等功能。 1.Append 功能说明:追加内容到文件中。文件必须要存在。 参考实例: var S: String; F: TextFile; begin S := 'This is a book.'; Assig Read More
posted @ 2017-07-06 18:52 findumars Views(600) Comments(0) Diggs(0)