Delphi chkdsk Print File I/O Status Check Display ShellExecute SMTP CreateFile GetDriveType SW_HIDE SW_SHOW SendMail Delphi Folder Navigation Dialog Print Dialog DragQueryFile TPrintDialog Java GetVolumeInformation Is Audio CD Transparent Text Out TOSVERSIONINFO ShowWindow Removable Disk Detection GetWindowsDir Get Available System Memory Information available memory space GetSysDir GetSystemDir GetSystemDirectory GetVersionEx available memory GetWinDir GENERIC_READ GetWindowsDirectory GetWindowsVersion Gradient Filled Form Hard Disk Volume Lable Hard Disk Volume Name HDD Volume Lable HDD Volume Name Hide Caption Bar Animated Icon Comma Separator Desktop Wallpaper Decimal Separator DISP_CHANGE_NOTUPDATED DISP_CHANGE_SUCCESSFUL confirm Drive Type EnumDisplaySettings External Hard Disk Extract Filenames from Clipboard GENERIC_WRITE Comma 켜져있는시간 CD ROM Drive Detection BrowseInfo free memory free memory size free memory space

DRAGQUERYFILE.ZIP

Copy text to clipboard in Javascript   (created at May 07, 2013)   554  

Below is the example can copy text to clipboard in javascript. It's all tested in Microsoft Internet Explorer.

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

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

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

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

Checking If File Is In Use   (created at Sep 10, 2007)   42  

IsFileInUse will return true if the file is locked for exclusive access. It would fail if the file doesn't exist at all. function IsFileInUse(fName : string) : boolean;var    HFileRes : HFILE;begin    Result := false;    if no...

Browse for Computers, Folders, Files and Printers   (created at Sep 10, 2007)   39  

By using the SHBrowseForFolder Windows API function and Delphi we can invoke a Windows system dialog used to browse for files and folders on users hard drive as well as network computers and printers. First, let's look at what SHBrowseForFolder needs. Here...

How to draw Transparent Text on bitmap   (created at Sep 01, 2007)   40  

You can set transparent mode by calling SetBkMode function.procedure TForm1.Button1Click(Sender: TObject);begin  with Image1.Picture.Bitmap.Canvas do  begin    Font.Color  := clBlue;    Brush.Style := bsclear;   ...

Send An Email Using A Bean   (created at Aug 30, 2007)   29  

This JSP snippets shows how to send an email using a reuasable javabean    JSP Sample - Send Email     
 
 ...

JQuery And Function Chaining   (created at Aug 30, 2007)   49  

I am learning new things about jQuery: function chaning is a really cool feature: