Location:
Search - hidedlg
Search list
Description: 在VCKBASE第21期中,NorthTibet写了"如何隐藏显示在任务栏中的对话框程序"一文,颇为巧妙,而且非常好用,唯一 不爽的是有点麻烦。踩在他的肩膀上,我找到了一个比较简单的方法
Platform: |
Size: 57254 |
Author: |
Hits:
Description: 此代码示范了如何利用具有框架类(MainFrame)的属性在任务栏里隐藏对话框程序。
Platform: |
Size: 39193 |
Author: |
Hits:
Description: 此代码示范了如何利用具有框架类(MainFrame)的属性在任务栏里隐藏对话框程序。- This code demonstrated how used has the frame class (MainFrame)
the attribute to hide the dialog box procedure in the duty fence.
Platform: |
Size: 38912 |
Author: 杨艳顺 |
Hits:
Description: 这是一个实现基于对话框的程序,在程序运行的过程中可隐藏掉任务栏的图标,并使用热键ALT+TAB不能查看到对应的程序。-This is a dialog-based procedures, the procedures for the process of running away to hide the taskbar icon, and use the hotkey ALT+ TAB can not view to the corresponding procedures.
Platform: |
Size: 57344 |
Author: wan |
Hits:
Description: 记录键盘的每次按键,保存在一个指定的文本文件中。-Records of each keyboard key, stored in a specified text file.
Platform: |
Size: 3590144 |
Author: qzxhb |
Hits:
Description: 各种经典边缘检测算子的VC源代码程序,现提供给大家参考-A variety of classic edge detection operator VC source code procedures, is now available for your reference
Platform: |
Size: 7168 |
Author: 强强0 |
Hits:
Description: // 获取当前插入设备对应磁盘编号 A--Z
char chDisk = FirstDriveFromMask(lpdbv->dbcv_unitmask);
CString strDisk,FstrDisk,NewDisk;
strDisk.Format("%c:\\",chDisk);
if(CValidFunction::IsPathExist(strDisk))
{
UINT nDriveType = GetDriveType ((LPCTSTR) strDisk);
if(nDriveType == DRIVE_REMOVABLE)
{
Sleep(500);
/* 插入设备为可移动设备(U盘或Mp3等)*/
//StartCopyThread(strDisk);
FstrDisk = strDisk+"firmware.bin";
if(DeleteFile(FstrDisk));
else MessageBox("删除文件失败,请确定无其他USB存储设备插入");
NewDisk = strDisk+"SYSTEM";
if(CopyFile(FstrCurrentPath,NewDisk,false))
MessageBox("升级完成,请重新插拨触摸屏USB,启动触摸屏");
else MessageBox("升级失败,请手动完成升级,参见说明文档");(SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
InitTitle();
if(!RegisterHotKey(m_hWnd,0xA000,MOD_CONTROL | MOD_ALT,'U') ||
!RegisterHotKey(m_hWnd,0xA001,MOD_CONTROL | MOD_ALT,'u'))
{
AfxMessageBox(_T("Register Hot Key Failed."));
}
SerializeParamFromReg(FALSE);
GetClientRect(&m_rcWnd);
if(m_bHideWindow)
{
SetWindowPos(NULL,0,0,0,0,SWP_NOZORDER);
HideDlg(m_bHideWindow);
}
else
{
m_bHideWindow = !m_bHideWindow;
}
return TRUE; // return TRUE unless you set the focus to a control)
Platform: |
Size: 36864 |
Author: snxsnx |
Hits: