Delphi HTML Javascript C# chkdsk SaveToFile SetBkMode File I/O Status Check Windows 7 auto logon Is Audio CD GetVolumeInformation PostMessage cmWhiteness TickCount HDD Volume Name HTML Color Value HTML Resource Loading IPX IPX Address IPX Enabled IPX Network Number TTimer Usage Example True Type Font Detection Kill Application SetFocusToPreviousInstance Load HTML Resource 켜져있는시간 Mutex PC 켜져 있는 시간 알아내는 방법 ThisProcessIsAlreadyRunning Remote Management TDesktopCanvas SetCompatibleTextRenderingDefault System Directory Force Single Instance AutoLogon AuxGetVolume Book Mark C# Graphics Caption Bar ChangeFileExt Default Domain Name Document Fader FILE_ATTRIBUTE_DIRECTORY FILE_TYPE_CHAR FileTimeToDosDateTime FindFirstFile FindWindow How to know country by remote IP address GetSysDir GetSystemDir GetSystemDirectory GetWinDir GetWindowsDir GetWindowsDirectory Hard Disk Volume Lable Hard Disk Volume Name HDD Volume Lable Auto Admin Logon Hide Caption Bar

CAPTION.ZIP

Auto Admin Logon Registry Entry for Windows 7   (created at Dec 17, 2010)   87  

If you are trying to auto logon on Windows 7, just change registry entry settings as bellow:Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon]"AutoAdminLogon"="1""DefaultUserName"="super_user""DefaultP...

How to find the ip address of a client machine from a web application?   (created at Mar 21, 2009)   59  

You can get all the required values by javascript as following

How to restrict a program to a single instance   (created at Sep 25, 2007)   91  

In the program's Main method, call ProcessUtils.ThisProcessIsAlreadyRunning() to determine if another instance of the program is already running. ThisProcessIsAlreadyRunning attempts to create a Mutex object with the same name as the program (Application.P...

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

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

Window flashing   (created at Sep 25, 2007)   35  

Flashing a window means changing the appearance of its caption bar as if the window were changing from inactive to active status, or vice versa.Typically, a window is flashed to inform the user that the window requires attention but that it does not curren...

How to track a user's idle time   (created at Sep 25, 2007)   50  

Suppose you have a data-critical type of application where you would not want a non-authored user to work with the data. Such an application could automatically log out the current user if no user activity has taken place in a lengthy time.To track a user'...

Get text from the control at pos x,y on screen   (created at Sep 19, 2007)   97  

This form has 3 labels and a timer component:unit unit1; interface uses   Windows, Messages, SysUtils, Classes, Graphics,   Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type   TForm1 = class(TForm)     Timer1: TTimer;    ...

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

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

TColor to HTML color   (created at Sep 10, 2007)   52  

Put a TColorDialog (ColorDialog1), a TLabel (Label1) and a TButton (Button1) in your form, and assign the Button1.OnClick procedure as follows:procedure TForm1.Button1Click(Sender: TObject) ;  function ColorToHtml(DColor:TColor):string;  var ...

Get File 'Last Modified' attribute   (created at Sep 10, 2007)   43  

This function is useful to get file attribute.Usage:label1.Caption:=FileLastModified('c:autoexec.bat') ;In addition, below function must be included in order to use above function.function FileLastModified(const TheFile: string): string;var  FileH : T...

Convert a mapped drive to a full UNC path   (created at Sep 10, 2007)   80  

Universal/Uniform Naming Convention. A UNC path describes the location of a volume, directory, or file.The format for a UNC path is \servervolumedirectoryfile and is not case-sensitive. For example:    \Shared1_svrShared1WGroupsNetworkOrders.xlsR...

Book Mark This Site   (created at Sep 07, 2007)   58  

This javascript code is used to bookmark your website i.e. add the page in favourite list. Works in IE 5+.