上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 76 下一页
摘要: #include #include #include #pragma execution_character_set("utf-8")int main(int argc, char *argv[]){ QApplication app(argc,argv); QLabel hello(QOb... 阅读全文
posted @ 2014-05-21 15:00 ahuo 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 在Linux 下经常需要链接一些 *.a的库文件,那怎么查看这些*.a 中包含哪些文件、函数、变量: 1. 查看文件:ar -t *.a 2. 查看函数、变量:nm *.a 阅读全文
posted @ 2014-05-13 15:29 ahuo 阅读(2937) 评论(0) 推荐(1) 编辑
摘要: gdb vc调试对照表:实现功能 vc gdb修改后编译 f7 make跳出函数(step out) shift+f11 finish,f重新启动 ctrl+shift+f5 run,r运行到指定行 f9+f5 tbreak,tb + continue,c中断程序 ctrl+alt+break ct... 阅读全文
posted @ 2014-05-13 10:40 ahuo 阅读(543) 评论(0) 推荐(0) 编辑
摘要: win2008下添加NFS安卓下运行(需要安装busybox 还有root)busybox mount -t nfs 192.168.1.2:/NFS /nfs -o nolock 阅读全文
posted @ 2014-05-04 14:39 ahuo 阅读(386) 评论(0) 推荐(0) 编辑
摘要: Regular Dll using shared MFC DLLextern"C"__declspec(dllexport)voidShow(){ AFX_MANAGE_STATE(AfxGetStaticModuleState()); CTest test; test.DoModal ();} 阅读全文
posted @ 2014-04-28 10:21 ahuo 阅读(527) 评论(0) 推荐(0) 编辑
摘要: RoyCShell.exe -PE -if:"G:\EncryptTool\Finder.exe" -of:"G:\EncryptTool\Finder_enc.exe" -AntiDbg -SctAlign -t:Rockey3 -VID:B00E0006 -BkChk:78 -Nrkt:"错误"... 阅读全文
posted @ 2014-04-23 09:33 ahuo 阅读(487) 评论(0) 推荐(0) 编辑
摘要: declare @i int set @i=1 while @i<(10000)begin INSERT INTO [Table]( [IDi] ,[IDo] ,[Synci] ) ( SELECT top 1 [IDi] ,@i ,[Synci] FROM [Table] ) set @i=@i+1 end 阅读全文
posted @ 2014-03-31 13:50 ahuo 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 。net4.5已经装好,mvc4setup也装了,启动IIS后打开网页还是不能正常显示页面,404错误最后发现把win7升级到SP1就正常了,具体是那个补丁修复的就不知道了 阅读全文
posted @ 2014-03-19 12:45 ahuo 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 在安装vm 安装后发现网络连接中的网桥模式不能使用。原来在本地连接里少了:VMware Bridge Protocol最后的解决方案如下:打开物理网卡本地连接->属性安装->(选中服务)添加->从磁盘安装->浏览->C:\Program Files (x86)\VMware\VMware Workstation\netbridge.inf重启VM后正常 阅读全文
posted @ 2014-03-06 10:24 ahuo 阅读(469) 评论(0) 推荐(0) 编辑
摘要: git clone https://android.googlesource.com/nameName Descriptionaccessories/manifest device/asus/deb device/asus/flo device/asus/flo-kernel device/asus/grouper Files specific to Nexus 7device/asus/tilapia device/common device/generic/armv7-a device/generic/armv7-a-neon device/generic/common device/ge 阅读全文
posted @ 2014-02-21 17:39 ahuo 阅读(1188) 评论(0) 推荐(0) 编辑
摘要: 1.网络打印机 非共享那种 ping通 其他人使用正常2.故障机器 打印机脱机状态 可以ping通打印机3.重启电脑故障排除 或者重启Print Spooler服务 阅读全文
posted @ 2014-02-19 10:24 ahuo 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 缓存DC的作用:解决闪烁问题CRectrect;GetClientRect(rect);获取view视图的区域CClientDCdc(this);创建了DC可作图pdc->DrawText;输出文本CSizesize=pDC->GetOutputTextExtent(str);获取一个文本的大小。 阅读全文
posted @ 2014-01-20 11:56 ahuo 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 原话:Warning! We have reports that the iPad 2 (wifi) is not yet compatible with the jailbreak and will certainly get stuck in a reboot loop. Avoid trying evasi0n on that model till we make further investigations. 阅读全文
posted @ 2013-12-25 21:43 ahuo 阅读(246) 评论(0) 推荐(0) 编辑
摘要: SendMessage(this.listViewChart.Handle, LVM_SETICONSPACING, 0, 0x10000 * 140 + 130);其中 140控制行距,130控制列距 阅读全文
posted @ 2013-12-02 11:40 ahuo 阅读(315) 评论(1) 推荐(0) 编辑
摘要: AVFrame* YUV2RGB( AVCodecContext * avctx, AVFrame * frame ){ AVFrame* pFrameRGB=NULL; pFrameRGB=avcodec_alloc_frame(); if(pFrameRGB==NULL) return NULL; // Determine required buffer size and allocate buffer int numBytes=avpicture_get_size(PIX_FMT_BGR24, avctx->width,avctx->height); uint8_t * bu 阅读全文
posted @ 2013-11-13 14:56 ahuo 阅读(1771) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 76 下一页