关掉64位系统中32位程序的目录重定向在64位Windows系统中运行的32位程序会被系统欺骗.例如windows\system32的目录实际是windows\syswow64目录的映射.program files实际是program files(x86)的映射.注册表的hkey_local_mac... Read More
posted @ 2014-12-24 17:05 findumars Views(5087) Comments(0) Diggs(0)
每次安装都不一样,而且有时候挺麻烦的,所以记下来。我这次安装过程是这样的:0. 修改Source\Delphi7\Make.bat,填入正确的IdeDir1、找到source\delphi7目录,所有的DPK文件都在这里。2、编译DAC 运行包,即dac70.dpk。3、如果是D6或D7,编译DAC... Read More
posted @ 2014-12-23 00:09 findumars Views(3207) Comments(0) Diggs(1)
vc2005中没有classwizard这个命令了 2005下怎么添加鼠标事件vc2005中没有classwizard这个命令了取代classwizard 中的添加消息映射,添加类,等等的功能主要在属性窗口中鼠标事件不要手动添加,最好使用下述方法比如添加消息映射。你选定了一个类后,在属性点击右键 选... Read More
posted @ 2014-12-22 23:14 findumars Views(328) Comments(0) Diggs(0)
传给未分配内存的const char* (LPCTSTR)指针. CString cstr(asdd); const char* ch = (LPCTSTR)cstr; ch指向的地址和cstr相同。但由于使用const保证ch不会修改,所以安全.2.传给未分配内存的指针. CSt... Read More
posted @ 2014-12-22 23:11 findumars Views(1128) Comments(0) Diggs(0)
function RunAsAdmin(hWnd: HWND; filename: string; Parameters: string): Boolean;{ See Step 3: Redesign for UAC Compatibility (UAC) http://msdn.mi... Read More
posted @ 2014-12-22 04:38 findumars Views(1032) Comments(0) Diggs(0)