Windows API Guide: GetFileAttributes Function


Declare Function GetProp Lib "user32.dll" Alias "GetPropA" (ByVal hWnd As Long, ByVal lpString As String) As Long

Platforms

  • Windows 95: Supported.
  • Windows 98: Supported.
  • Windows NT: Requires Windows NT 3.1 or later.
  • Windows 2000: Supported.
  • Windows CE: Not Supported.

Description & Usage

GetProp retrieves the value of one of the window properties of a window. The function obtains a handle to whatever object was associated with the window property.

Return Value

If successful, the function returns a handle to the object associated with the window property. If the desired window property could not be found, the function returns 0.

Visual Basic-Specific Issues

None.

Parameters

hWnd
A handle to the window to read a window property of.
lpString
The name of the window property to read.

Example

' This code is licensed according to the terms and conditions listed here. ' Read the "LookupFile" property of window Form1 and display it. ' This property is set by the example for the SetProp function -- ' the value is a string specifying a filename. Dim hData As Long, pData As Long  ' handle and pointer to the property's data Dim strvalue As String  ' receives the value of the window property (in this case) Dim retval As Long  ' return value ' Get a handle to the window property's data. hData = GetProp(Form1.hWnd, "LookupFile") ' If that property didn't exist, alert the user. If hData = 0 Then   Debug.Print "There is no property called 'LookupFile'." Else   ' Get a pointer to the data retrieved.   pData = GlobalLock(hData)   ' Copy the string data into the string.   strvalue = Space(lstrlen(pData))   retval = lstrcpy(strvalue, pData)   ' Unlock the data block.   retval = GlobalUnlock(hData)   ' Display the string gotten from the data block.   Debug.Print "LookupFile = "; strvalue End If

See Also

SetProp

Category

Window Properties

Go back to the alphabetical Function listing.
Go back to the Reference section index.


Last Modified: December 24, 1999
This page is copyright © 1999 Paul Kuliniewicz. Copyright Information Revised October 29, 2000
Go back to the Windows API Guide home page.
E-mail: vbapi@vbapi.com Send Encrypted E-Mail
This page is at http://www.vbapi.com/ref/g/getprop.html



Windows API Guide
Windows API Guide - Reference - Volume 1: Version 3.0 For the MS-DOS and PC-DOS Operating Systems
ISBN: B001V0KQIY
EAN: N/A
Year: 1998
Pages: 610

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net