QualifiedItemNameGet

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalString QualifiedItemNameGet( SalWindowHandle hWnd )

The QualifiedItemNameGet returns the fully qualified name of any window object.

Parameters

Name Description
SalWindowHandle hWnd The handle (or name) of the window to get the qualified name of.

Returns

The return value is the fully qualified object name.

Example

On SAM_SetFocus
   Call SalSendClassMsg( SAM_SetFocus, wParam, lParam )
   Call Console.Add( 'Focus is now in: ' ||
             QualifiedItemNameGet( i_hWndSelf ) )
C# coding
// Fetch SQL Windows error position information
if (i_hWndSelf == SalWindowHandle.Null) 
{
	sItemName = Int.QualifiedItemNameGet(Sys.hWndItem);
}
else
{
	sItemName = Int.QualifiedItemNameGet(i_hWndSelf);
}