1 , vb5dialog.zipThis demonstrates how to subclass the Common Dialog Dialogs and manipulate a specific Dialog.2 , cpnl.zipForm_Taskbar is a control for Visual Basic which, once placed onto a form, makes the form act like the Taskbar (minus the Start
使用安装说明中的第二种方式成功安装Delphi2007 II. Using make-files Delphi and C++ Builder for Win32 -------------------------------- 1) Go to one of the following folders (let's denote this folder %MakePath%): Source\Delphi6 - for Delphi 6 Source\CBuilder6 - for C++
// ============================================================================= // FILE: StdString.h // AUTHOR: Joe O'Leary (with outside help noted in comments) // // If you find any bugs in this code, please let me know: // // jmoleary@earthlink.
A year and a half year ago, I published this article to the Codeguru site and got a number of requests about the Kriging algorithm contour map. Unfortunately, my project was changed shortly after that article and later I quit the company so I couldn
UPX 源码 V3 验证好用 UPX.v3.05.Source The UPX Hacker's Guide ====================== Foreword -------- The precompiled UPX versions are linked against the NRV compression library instead of the UCL library. Using the same compression algorithms, NRV achiev
XMGR RDISK and UIDE DOS Device Drivers 1 Descr iption XMGR RDISK and UIDE are a group of DOS device drivers for a PC system with an 80386+ CPU and using MS DOS V5 0+ or equivalent XMGR is a DOS driver which works as an "XMS manager" and pr
角度练习
该存储库反映了我对angular-js的实践工作。
笔记
安装角度cli
npm i -g angular/cli
创建bioler板代码
ng new
运行角度应用
ng serve
使用CLI生成组件
ng g c
使用角度CLI生成服务
ng g s
角度应用程序的构建基块
成分
概述:
数据
HTML模板
逻辑
模组将应用分成小部分以简化可维护性。
范本动态HTML
指令
服务
打字稿
let variable = 1; // type of variable i
都不
C ++ 14中Either的功能实现。
buckaroo add github.com/loopperfect/neither
例子
处理不安全代码
auto unsafe = [] { // a function that throws, sometimes we can't avoid it...
if ( true ) {
throw std::runtime_error ( " error " );
}
return 1 ;
}
Either e = Try
平行线
一个小型的CLI应用程序,看起来可以与GNU并可以在Go中运行其思想。
例子
# first, let's create some files.
for i in {1..24} ; do
head -c ` expr $i \* 500 ` /dev/urandom > " test/ $i "
done
# cat all files with four threads in
# operation.
parallel -j 4 cat {} \; ./test/ *
#