VC 实现文件拖拽
exchen 14年前 (2010-10-21) 3662浏览 0评论
void CTestDlg::OnDropFiles(HDROP hDropInfo) { // TODO: Add your message handler code here and/or call de...
exchen's blog专注软件安全
exchen 14年前 (2010-10-21) 3662浏览 0评论
void CTestDlg::OnDropFiles(HDROP hDropInfo) { // TODO: Add your message handler code here and/or call de...
exchen 14年前 (2010-09-07) 3211浏览 0评论
今天在写程序的时候,发现DeleteColumn有点小问题。 我想删除List的所有Column,于是用下面的语句。 m_list_mailinfo.DeleteColumn(0); m_list_mailinfo.DeleteColumn(1)...
exchen 14年前 (2010-09-06) 3732浏览 0评论
总结了一下Delphi程序自删除的几种方法 //方法一 program Project1; uses Windows; function WinExec(lpCmdline: PAnsiChar; uCm...
exchen 14年前 (2010-09-06) 4307浏览 0评论
昨天想打开迅雷下载点东西,双击运行迅雷主程序,提示一个出错对话框,Atl71.dll 文件丢失。 在 C 盘里搜索 Atl71.dll,在一个 help 文件夹里搜到了 Atl71.dll。具体路径应该是 C:\Program Files\Micro...
exchen 14年前 (2010-08-30) 3414浏览 0评论
rundll32.exe shell32.dll,SHFormatDrive 转载请注明:exchen's blog » Rundll32 使用技巧...
exchen 14年前 (2010-08-19) 3776浏览 0评论
void CTestDlg::OnOK() { // TODO: Add extra validation here CEdit* edit; edit = new CEdit; edit-...
exchen 14年前 (2010-08-18) 4215浏览 0评论
获取命令行的方法: 1、GetCommandLine() 获取输入的所有信息,包括程序所在路径及参数 2、AfxGetApp()->m_lpCmdLine 只包含参数 一般情况下,获取到命令行后就可以针对命令行中的内容进行相应的处理了 CObject...
exchen 14年前 (2010-08-18) 4220浏览 0评论
在MFC程序中,可以用以下几种方法来获取命令行参数。 为方便说明,我们假设执行了命令:C:\test\app.exe -1 -2 方法一 ::GetCommandLine(); 将获取到 "C:\test\app.exe" -1 -2 方法二 for...
exchen 15年前 (2010-08-04) 4378浏览 0评论
一个栈溢出的经典代码 #include <stdio.h> #include <string.h> void overflow(char* buf) { char des[5]="";...
exchen 15年前 (2010-08-04) 4193浏览 0评论
栈在内存中到底是如何表现的呢?我们来做一个实例调试一下。 代码如下: #include void main() { _asm { push 0x12345678 push 0x11112222 pop eax pop ebx } } 按F9下一个断点...
exchen 15年前 (2010-07-31) 4205浏览 0评论
vector是C++中的一种数据结构,确切的说是一个类,它相当于一个动态的数组,当程序员无法知道自己需要的数组长度多大时,使用vector可以达到最大节约空间的目的,也就是实现动态分配数组。 举例如下: #includ...
exchen 15年前 (2010-07-31) 3941浏览 0评论
使用new分配变长数组 #include <iostream.h> void main() { int len; cout << "请输入数组的长度: "; ...