Wednesday 13 January 2010, 12:43
One of the funniest gag ever :D
Check this video WITH the sound :D
[no comment] :: [no trackback]
Wednesday 13 January 2010, 12:43
Check this video WITH the sound :D
[no comment] :: [no trackback]
Sunday 10 January 2010, 15:41
When recently trying to use the CMFCPropertySheet class with CMFCPropertySheet::PropSheetLook_Tree, I ran into the problem that the class does not give any options to customize the look the the tree control on the left side.
With CMFCPropertySheet, it is possible to set a list of icons or an empty list. In both cases there is no options to have the buttons (+ or - square) or the line in the tree.
Here is one way to fix this problem.
[view]
[no comment] :: [no trackback]
Friday 18 December 2009, 12:48
[cpp]
BOOL GetApplicationDirectory(CString& _sApplicationDirectory)
{
TCHAR szPathName[_MAX_PATH];
if (FAILED(::GetModuleFileName(NULL, szPathName, _MAX_PATH)))
{
return FALSE;
}
TCHAR szDrive[_MAX_DRIVE];
TCHAR szDirectory[_MAX_DIR];
TCHAR szFileName[_MAX_FNAME];
TCHAR szExtension[_MAX_EXT];
// Split path
_tsplitpath_s(szPathName, szDrive, _MAX_DRIVE, szDirectory, _MAX_DIR,
szFileName, _MAX_FNAME, szExtension, _MAX_EXT);
// Make safe path
_tmakepath_s(szPathName, _MAX_PATH, szDrive, szDirectory, _T(""), _T(""));
_sApplicationDirectory = szPathName;
return TRUE;
}
[no comment] :: [no trackback]
Monday 14 December 2009, 07:19
Those smart asses from Canon won't ship the ZoomBrowser EX installer, only updaters.
I've got an XP laptop.
So the what you should do is:
Canon does not seem to know what is a multilanguage installer either. So choose carefully alternative downloads for the language you are looking for...
Thank you Canon for wasting my time!!
[no comment] :: [no trackback]
Wednesday 14 May 2008, 10:27
If you stop here you will get a "Err Msg: 530 User <Username> Cannot Log In, Home Directory Inaccessible. Login Failed." Solution:
[no comment] :: [no trackback]
Monday 14 January 2008, 20:24
sudo dpkg-reconfigure console-setup
[no comment] :: [no trackback]
Saturday 12 January 2008, 14:39
I had to find a solution for my company to remote a Linux machine from Windows. The less extra software the better.
The computer to remote has Debian 4.0 installed.
xrdp is a magic solution. It allows to tunnel X into the Windows Remote Desktop Connection application. There is no need for extra software to install on Windows.
You need to install xrdp on the Linux.
apt-get update apt-get install xrdp
It did not work right away, but after rebooting the Linux machine, everything went smoothly.
[no comment] :: [no trackback]