Delphi chkdsk C++ ShellExecute C# CGI C# CGI Example C# CGI Sample CGI URLDecode Linked List PostMessage QUERY_STRING getenv Removable Disk Detection formatted date Datagram UDP Receive BrowseDialog UDP SOCK_DGRAM HTTP Server Shell Comand MFC MFC CGI Example Morris Pratt String Search Algorithm String Matching Algorithm WWW Server Source Search File SetTimer SHNE_MEDIAREMOVED SHChangeNotifyRegister SHCNE_DISKEVENTS SHCNE_MEDIAINESERTED ShellExecuteEx Creating Thumbnail Amazon Amazon CloudFront Ansi C ASCII AuxGetVolume Binary Search Bubble Sort CAsyncSocket CGI Example CGI Sample Client/Server Computer Name Kill Application Double Linked List Event Call FindWindow GetAsyncKeyState HTTP Daemon Access Key HTTP Server Source HTTPServer Image Processing Image Resizing

VK_RBUTTON.ZIP

Fast and Good Keyboard/Mouse Test without the message handler   (created at Aug 27, 2007)   77  

In this short snippet, I will show you a Win32 function that checks whether a button is pressed or not. The good thing is that you don't need to handle the WM_KEYDOWN message. The second advantage is that it is really easy to use and that it can be used ev...

KMP String Matching Algorithm   (created at Jul 21, 2010)   69  

KMP String Matching Algorithm is well-known algorithm for faster string search. KMP is, as you know, Knuth, Morris, and Pratt. It's complexity is O(n). n is the length of target string and O is big-O notation.Here's the implemented algorithm.//////////////...

URL Encode, Decode function for MFC   (created at Mar 23, 2009)   84  

Here's the good example for URL Encoding & Decoding.  Above sample code use CString, so if you want to use it on another type of development environment such as gcc or something like that, you need to add some more stuffs because it may not suppo...

How to load HTML resource on MFC ?   (created at Mar 23, 2009)   91  

I tried to load HTML resource that stored in the application for MFC based application programming. The resource name is IDR_KURAPA_COM_HTML_ROOT.Actually this is very convenient to reduce files for application package.You can load HTML resource as followi...

How to call SetTimer function on MFC CDialog class ?   (created at Jul 30, 2008)   74  

Hi, problem with MFC Dialog based app: In OnInitDialog: Code: SetTimer( WM_USER+100, 500, NULL ); In OnTimer: Code: MessageBox(... CDialog::OnTimer(nIDEvent); But OnTimer never reached. Why? When i call SendMessage( WM_TIMER, 0, 0); OnTimer calls succesful...

How to search file on certain directory ?   (created at Jun 15, 2008)   40  

In case of finding files on certain directory, you need to use FindFirstFileEx function.Following example shows the example,bool KFindFile(void *findname){    WIN32_FIND_DATA FindFileData;    HANDLE hFind;    CString strSearch...

How to Close Another Application by Windows Caption   (created at Sep 18, 2007)   54  

To programmatically close another application, send to the application a WM_QUIT message. "Window caption" is the caption of the window that you are sending the message to. Usage: if not KillApp('Window caption') then ShowMessage('App not closed') ;Here's ...

How to run shell command by MFC ?   (created at Sep 09, 2007)   51  

Followings are the useful example can run shell command./*    Programmed 1998 by Kurapa Chunun Kang (kurapa@kurapa.com)    By below function, you can run shell command easily.*/#include void KShellExecute(HWND handle, LPCTST...

Binary Search Sample Code   (created at Sep 08, 2007)   70  

This is Binary search that returns a negative one if the number is not found.This code does a bubble sort and then proforms the binary search.#include

Double Linked List based in C++   (created at Sep 08, 2007)   57  

Below is the double linked list example that based on console.Specially this application use macro by define function provided by ANSI C.It's just like inline function that C++ provides.

MFC based World Wide Web HTTP Server Source Code   (created at Aug 28, 2007)   70  

The below attachment is HTTP Server source code that supports CGI. Detail Description: HTTPSVR is an MFC sample that demonstrates the use of MFC and its Windows Sockets (WinSock) classes in implementing a simple World Wide Web HTTP server. HTTPSVR turns an...

Creating and Using a CAsyncSocket Object to use CAsyncSocket   (created at Aug 28, 2007)   84  

Followings are the procedure to send/receive UDP packet by CAsyncSocket.STEP 1. ConstructionConstruct a CAsyncSocket object and use the object to create the underlying SOCKET handle.Creation of a socket follows the MFC pattern of two-stage construction.For...

UDP Send and Receive Using CAsyncSocket   (created at Aug 28, 2007)   35  

The following is sample code showing use of CAsyncSocket to send and receive UDP packets. I used the ClassWizard to create a class (CUDPSocket) derived from CAsyncSocket. The derived class does little more than override OnReceive. The derived class is used...

Using the shell to receive notification of removable media being inserted or removed   (created at Aug 28, 2007)   34  

Recently I needed to determine when removable media, such as a zip disk or media card, had been inserted by the user. I initially looked into the WM_DEVICECHANGE broadcast message only to realise this supports CDROMs and little else. Fortunately there is a...

Simple CGI Programming in C   (created at Aug 27, 2007)   61  

Here's the simplest C based CGI example. #include #include int main(void){    char *data;    printf("Content-Type:text/html;xdxa"); ");&n...

C++ CGI Example working on Apache   (created at Aug 27, 2007)   52  

In this short howto I will explain how to setup your apache webserver to run any compiled application as an CGI script and show a little example program to explain the main concepts. So why does someone might have the idea to execute an application? There ...