Delphi Javascript HTML C# chkdsk Cookie SetBkMode Print Popup Blocking ShellExecute Form Cookies C# Print GetPort SW_SHOW SW_HIDE TPrintDialog DragQueryFile WindowsXP ICS Port Forwarding OnMediaChanged WM_EndSession window.open WM_QueryEndSession statusMessage Shut Down WM_SYSCOMMAND WMEndSession QoS Tweak WMQueryEndSession Port Forwarding Popup Once Photo Viewer Password change Browser Capability Mouse Trailing Javascript Window Internet Explorer IE Browser Speed Enhancement Get Available System Memory Information Extract Filenames from Clipboard Drive Type Detection cookieVal C# Graphics Browser Compatibility

WINDOW OPEN.ZIP

Changing the Title of a Print Dialog in Delphi   (created at Apr 20, 2011)   116  

The TPrintDialog component displays a standard Windows dialog box for sending jobs to a printer. Unfortunately, the TPrintDialog does not expose the Title property. By handing the OnShow event of a print dialog you can specify the text for the dialog’s tit...

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

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

Photo thumbnail viewer implement in javascript   (created at Aug 27, 2009)   65  

When you navigate internet shopping mail, you can easily see the photo viewer to see the magnified big picture for the sales product. Following example is showing the photo thumbnail without additional pages on server.Actually there is no additional server...

Windows XP Internet Connection Sharing: Port Forwarding Difficulties   (updated at Jan 15, 2024)   112  

I have properly configured ICS with two NICs on one of my Windows XP machines (chii.usr.local), and the interfaces look like so:Ethernet adapter 3Com:Ethernet adapter Marvell: Three other computers on the network exist:All three machines are configure...

Extracting the Country from IP Address   (created at Sep 25, 2007)   70  

Notes: If you want to run this sample,you should copy the Ip address to driver c:. Using the codePart 1.using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows....

How to Get Filenames from Clipboard ?   (created at Sep 19, 2007)   593  

"If I use the Windows Explorer to copy a file, how can I use the paste function in my application?" This code retrieves the filenames from the clipboard to a memo component. Drop a memo and a button on a form and set the OnClick of a button to: uses  ...

Detecting and preventing Windows shut down   (created at Sep 18, 2007)   65  

When Windows is about to shut down, it sends a WM_QueryEndSession to all open applications. To detect (and prevent shutdown) , we must define a message handler to this message. Put this definition on the private section of the main form:procedure WMQueryEn...

Tooltip   (created at Sep 07, 2007)   46  

This tool tips works well in IE, and Netscape.