Delphi chkdsk C++ Print ShellExecute GetPort SW_SHOW SW_HIDE C# CGI C# CGI Example C# CGI Sample CGI Datagram formatted date UDP Receive getenv URLDecode SOCK_DGRAM Linked List PostMessage QUERY_STRING Removable Disk Detection ShellAPI CreateProcess BrowseDialog UDP ASCII Administrator Binary Search MFC MFC CGI Example Morris Open URL OS Creating Thumbnail RunPowerShellCommandAsAdmin PowerShell Pratt Ansi C Amazon CloudFront Administrator Privileges Removable Media Detection runas CGI Example Device Driver Installation Method Disable ALT+TAB Double Linked List Event Call WWW Server Source Client/Server GetAsyncKeyState CGI Sample InstallINF How To Install Device Driver? Bubble Sort HTTP Server Source HTTPServer Image Processing Image Resizing InstallHinfSection

SHELLEXECUTEEX.ZIP

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

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...

Run PowerShell Command as Administrator in Delphi   (created at Mar 09, 2024)   87  

To capture the output of the PowerShell command and store it in a string variable, you can modify the RunPowerShellCommandAsAdmin procedure to redirect the output of the PowerShell process and read it into a string. In this modified code:We create a T...

Run command with Administrator permission in Delphi on Microsoft Windows   (created at Mar 09, 2024)   123  

In Delphi, you can execute commands with administrator privileges by using the ShellExecute function with the 'runas' verb. However, if you want to execute a specific command with administrator privileges, you can use the CreateProcess function from the Wi...

Delphi Program can command level execution program with hidden mode   (updated at Jan 15, 2024)   181  

Below is the example of running command with hidden mode. Actually there lots of command type in Windows like SW_NORMAL, SW_HIDE, ...What I am going to implement is running windows command with hidden mode.Below is the example of windows command execution ...

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

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.//////////////...

How to launch application ?   (created at Sep 08, 2009)   55  

You can launch application on windows by ShellExecute function. Following is the simple example to launch application.use ShellAPI;...ShellExecute(Handle, 'open', PChar('c: estapp.exe'), nil, nil, SW_SHOW);In case of running DOS command application such as...

How to print external document ?   (created at Sep 08, 2009)   59  

Without complex programming, you can print document by ShellExecute function.use ShellAPI;...ShellExecute(Handle, 'print', PChar('c: est est.doc'), nil, nil, SW_SHOW);

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

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)   130  

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)   87  

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)   52  

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 install an INF file using Delphi ?   (created at Sep 19, 2007)   46  

If you need to install an "inf" file using Delphi, you could use the next code: { Usage:   InstallINF('C:XYZ.inf', 0) ; } uses   ShellAPI; function InstallINF(const PathName: string; hParent: HWND): Boolean; var   instance: HINST; begin &nbs...

Display Standard Windows Properties dialog   (created at Sep 18, 2007)   644  

Here's the code that will display the standard Windows Properties dialog for a specified file (object) name.Usage:ShowProperties(Application.Handle, 'c:autoexec.bat')Here's the function source.function ShowProperties(hWndOwner: HWND; const FileName: string...

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

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)   60  

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)   83  

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)   98  

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)   41  

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)   42  

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...

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

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...

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

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)   58  

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 ...

How To Open Url In Default Webbrowser   (created at Aug 25, 2007)   45  

Use this function to open your browser with a given URL.uses    shellapi;  ....  procedure TForm1.Label1Click(Sender:TObject);  begin    shellexecute(handle,'open','http://www.swissdelphicenter.ch', nil,nil,sw_show); ...