Saturday, November 21, 2009
 
 
 Browse Category
» Application
» Arc
» AVI
» Bitmap
» Brush
» Caret
» Character
» Clipboard
» Color
» Compress
» Console
» Cryptographic
» Currency
» Cursor
» Date/Time
» DDE
» Device
» Display
» DLL
» Drives
» Ellipse
» File
» Font
» FTP
» HotKey
» Icon
» ImageList
» Inet
» INI-Files
» Internet
» Joystick
» Keyboard
» Memory
» Menu
» MIDI
» Network
» Objects
» Pen
» Picture
» Polygon
» Ports
» Printer
» Process
» Rectangle
» Registry
» ScrollBar
» Sound
» Strings
» System
» Tape
» Text
» Timer
» Triangle
» Wait
» Window
Search Freeware
Search Links

API Name A-Z  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z

21 API Function starting with letter L

LoadLibrary

The LoadLibrary function maps the specified executable module into the address space of the calling process....
Hits: 6025 Rating: LoadLibrary has been rated  3.03 by  337 users (3.03) votes 337
Category: DLL

LoadIcon

The LoadIcon function loads the specified icon resource from the executable (.exe) file associated with an application instance....
Hits: 4042 Rating: LoadIcon has been rated  3.03 by  631 users (3.03) votes 631
Category: Icon

LoadLibraryEx

The LoadLibraryEx function maps a specified executable module into the address space of the calling process. The executable module can be a .DLL or an .EXE file. The specified module may cause other modules to be mapped into the address space....
Hits: 3094 Rating: LoadLibraryEx has been rated  3.05 by  371 users (3.05) votes 371
Category: DLL

lstrcmp

The lstrcmp function compares two character strings. The comparison is case sensitive....
Hits: 1625 Rating: lstrcmp has been rated  2.93 by  378 users (2.93) votes 378
Category: Strings

lstrcat

The lstrcat function appends one string to another....
Hits: 1989 Rating: lstrcat has been rated  2.97 by  603 users (2.97) votes 603
Category: Strings

lstrcmpi

The lstrcmpi function compares two character strings. The comparison is not case sensitive....
Hits: 1438 Rating: lstrcmpi has been rated  3.02 by  388 users (3.02) votes 388
Category: Strings

lstrlenW

The lstrlen function returns the length in bytes (ANSI version) or characters (Unicode version) of the specified string (not including the terminating null character)....
Hits: 1912 Rating: lstrlenW has been rated  2.89 by  354 users (2.89) votes 354
Category: Strings

LZClose

The LZClose function closes a file that was opened by using the LZOpenFile function....
Hits: 1949 Rating: LZClose has been rated  2.98 by  615 users (2.98) votes 615
Category: Compress

LZCopy

The LZCopy function copies a source file to a destination file. If the source file is compressed with the Microsoft File Compression Utility (COMPRESS.EXE), this function creates a decompressed destination file....
Hits: 1984 Rating: LZCopy has been rated  3.08 by  446 users (3.08) votes 446
Category: Compress

LZOpenFile

The LZOpenFile function creates, opens, reopens, or deletes the specified file....
Hits: 2590 Rating: LZOpenFile has been rated  3.14 by  340 users (3.14) votes 340
Category: Compress

LoadKeyboardLayout

The LoadKeyboardLayout function loads a new input locale identifier (formerly called the keyboard layout) into the system. Several input locale identifiers can be loaded at a time, but only one per process is active at a time. Loading multiple input locale identifiers makes it possible to rapidly sw...
Hits: 4160 Rating: LoadKeyboardLayout has been rated  2.78 by  510 users (2.78) votes 510
Category: Keyboard

LineTo

LineTo draws a line from the current point to the point specified on a device. The line is drawn in the color specified by that object's .ForeColor property. After the line is drawn, the endpoint is the new current point. The algorithm Windows uses to draw a line does not actually color the last pix...
Hits: 1800 Rating: LineTo has been rated  3.10 by  515 users (3.10) votes 515
Category: Device

LOGFONT Structure

LOGFONT-type variables hold information about a logical font. A logical font is created from one of the stored font faces and is given various attributes such as size and style. The various members of the structure specify properties of the logical font. ...
Hits: 1571 Rating: LOGFONT Structure has been rated  2.89 by  255 users (2.89) votes 255
Category: Font

LockWindowUpdate

Use the LockWindowUpdate API to help speed up your app and eliminate annoying flickering. This is an extremely easy API to use. Just one declaration, one line of code to turn it on, and one line of code to turn it off. Using this API will prevent your form from receiving any refresh messages from...
Hits: 3815 Rating: LockWindowUpdate has been rated  2.96 by  527 users (2.96) votes 527
Category: Application

lstrcpyn

lstrcpyn a sequence of characters from the source string to the target string. Note that the target string must initially contain at least one more character than the desired number of characters to copy to allow for the terminating null character. The function returns 1 if successful, or 0 if an er...
Hits: 1637 Rating: lstrcpyn has been rated  2.96 by  444 users (2.96) votes 444
Category: Strings

lstrcpy

lstrcpy copies the entire contents of a string from one string variable to another. Any terminating null character will also be copied to the receiving string. The function returns 1 if successful, or 0 if an error occured. ...
Hits: 1501 Rating: lstrcpy has been rated  3.05 by  494 users (3.05) votes 494
Category: Strings

lstrlen

lstrlen determines the length of a string. The length of a string is considered to be the number of characters it contains, not counting any possible terminating null character. The function returns the length of the string. ...
Hits: 1808 Rating: lstrlen has been rated  3.09 by  503 users (3.09) votes 503
Category: Strings

LocalFileTimeToFileTime

LocalFileTimeToFileTime converts a time from local time (time according to the computer's current time zone) to UTC time (also known as Greenwich Mean Time). The source and target times are stored in FILETIME format. The function returns 1 if successful, or 0 if an error occured. ...
Hits: 2031 Rating: LocalFileTimeToFileTime has been rated  3.03 by  454 users (3.03) votes 454
Category: Date/Time

LoadCursorFromFile

LoadCursorFromFile loads a cursor from a cursor file. The cursor file can contain either a regular cursor (*.cur) or an animated cursor (*.ani). If successful, the function returns a cursor handle to the newly loaded cursor. If unsuccessful, the function returns 0. ...
Hits: 2523 Rating: LoadCursorFromFile has been rated  2.95 by  514 users (2.95) votes 514
Category: Cursor

LoadCursor

LoadCursor loads a cursor from either a currently running program's cursor resources or Windows's cursor resources. The cursor can be referenced either by its resource name or by its numeric resource ID number. If successful, the function returns a handle to the loaded cursor. If unsuccessful, the f...
Hits: 3902 Rating: LoadCursor has been rated  3.07 by  921 users (3.07) votes 921
Category: Cursor
Records 1 to 20 of 21




HOME | ARTICLES | MUSIC | DOWNLOADS | LINK DIRECTORY |  GAMES | TEST-QUIZZES | SITEMAP | ABOUT | HELP
Copyright © 2000 - 2007 Ex-designz. All rights reserved. Website Developed By Dexter Zafra of Myasp-net.com
Link to us | Advertisement | Contact us | Privacy Policy | Terms of use | Accessibility