private void CreateExcel() { string header =
string.Empty; string line = string.Empty; try { dltDataBind(); Response.Clear();
Response.Buffer = true;....
分类:
其他好文 时间:
2014-06-29 14:28:54
阅读次数:
235
在开发D3D应用程序时,我们会使用Debug
Layer来调试应用程序,以确保我们的程序在最终发布时没有warnings和errors。不过最近在开发应用程序时遇到了这样的问题,就是我把多个网格模型的顶点数据放在一个vertex
buffer中,与此同时也把它们的索引数据放在一个index buff...
分类:
其他好文 时间:
2014-05-30 21:17:41
阅读次数:
480
1 #include 2 #include 3 #include 4 //信号量与关键段 5
CRITICAL_SECTION g_cs; 6 HANDLE Empty,Full; 7 8 const int
BUFFER_SIZE=10;//10个缓冲池 9 const int numo...
分类:
编程语言 时间:
2014-05-30 09:20:55
阅读次数:
371
http://blog.chinaunix.net/uid-23577393-id-1751983.htmlTo
count how often any pattern occurs in the current buffer use the
substitutecommand and add th...
分类:
其他好文 时间:
2014-05-29 17:37:03
阅读次数:
217
$throttleLimit = 4$SessionState =
[system.management.automation.runspaces.initialsessionstate]::CreateDefault()$Pool
= [runspacefactory]::CreateRunspa...
分类:
其他好文 时间:
2014-05-29 14:12:57
阅读次数:
229
【当property遇上category】
@property可以在类定义中,以及extension定义中使用,编译器会自动为@property生成代码,并在变量列表(ivar_list_t)中添加相应的以下划线开头的变量。
在category中,编译器允许定义@property,但不会为此@p.....
分类:
其他好文 时间:
2014-05-28 02:35:35
阅读次数:
241
Chrome插件开发笔记360翻译了Chrome插件开发的文档
(仍然建议出去看看)看这里http://open.chrome.360.cn/extension_dev/overview.html什么是扩展一个应用(扩展)其实是压缩在一起的一组文件,包括HTML,CSS,Javascript脚本,图...
分类:
其他好文 时间:
2014-05-28 01:49:25
阅读次数:
896
1.在PHP编程中, 我们经常会遇到一些直接产生输出的函数,
如passthru(),readfile(), var_dump() 等. 但有时我们想把这些函数的输出导入到文件中,或者先经过处理再输出,
或者把这些函数的输出作为字符串来处理. 这时我们就要用到 Output Buffer(输出缓冲....
分类:
Web程序 时间:
2014-05-27 16:05:43
阅读次数:
328
http://baptiste-wicht.com/posts/2012/04/c11-concurrency-tutorial-advanced-locking-and-condition-variables.htmlstruct
BoundedBuffer { int* buffer; ...
分类:
编程语言 时间:
2014-05-27 16:04:22
阅读次数:
303
<?php
/*--------------------编写自己的缓存类---------------*/
class my_cache{
//定义有关变量
private $cache_time;//缓存有效时间
private $cache_file;//缓存文件保存路径
//初始化类,默认是index.html时间是1
function __construc...
分类:
Web程序 时间:
2014-05-25 21:54:23
阅读次数:
328