Skip to main content

SalWindowHandle

Namespace: PPJ.Runtime

Assembly: PPJ.Runtime.49 (4.9.0.0)

SAL WindowHandle basic type. This class holds either a raw handle (a handle to SalSqlHandle, SalSqlSessionHandle, SalFileHandle, or a native control handle) or a weak reference to a .NET control.

public struct SalWindowHandle : ValueType, IConvertible, IComparable, ISalType, ISerializable, IXmlSerializable

Constructors

Instance memberSalWindowHandle(handle)

Creates a new SalWindowHandle.

NameTypeDescription
handleIntPtr

Instance memberSalWindowHandle(ctrl)

Creates a new SalWindowHandle.

NameTypeDescription
ctrlControl

Properties

Instance memberControl

Control: Returns the referenced control instance.

Instance memberIsNull

Boolean: Checks if this SalWindowHandle object contain a null value.

Instance memberValue

IntPtr: Returns the Handle value.

Methods

Instance memberAddListItem(sName)

Adds a string to a list box or combo box.

ParameterTypeDescription
sNameSalString

Returns: SalNumber.

Instance memberAnyRows(flagsOn, flagsOff)

Determines whether any rows in the specified table window match certain flags.

ParameterTypeDescription
flagsOnSalNumber
flagsOffSalNumber

Returns: SalBoolean.

Instance memberBringWindowToTop()

Brings a window to the top of all overlapping windows.

Returns: SalBoolean.

Instance memberCenterWindow()

Centers a window. If the window is a top-level window, it centers it on the desktop. If the window is a child window, it centers it on top of its parent.

Returns: SalBoolean.

Instance memberClear()

Clears the value from a data field, multi line field, or table window column.

Returns: SalBoolean.

Instance memberClearCursor(type)

Clears a window's cursor.

ParameterTypeDescription
typeSalNumber

Returns: SalBoolean.

Instance memberClearImage()

Deletes the contents of a picture.

Returns: SalBoolean.

Instance memberClearList()

Deletes all entries from a list box or combo box.

Returns: SalBoolean.

Instance memberClearSelection()

Deselects all rows of a table window.

Returns: SalBoolean.

Instance memberColumnAverage(nColumnID, flagsOn, flagsOff)

Computes the average of all column values or only specified column values in a table window.

ParameterTypeDescription
nColumnIDSalNumber
flagsOnSalNumber
flagsOffSalNumber

Returns: SalNumber.

Instance memberColumnSum(columnId, flagsOn, flagsOff)

Computes the sum of all column values or only specified column values in a table window.

ParameterTypeDescription
columnIdSalNumberThe Column Identifier.
flagsOnSalNumberThe flags that the row should have. You can combine ROW* flags using the OR (|) operator.
flagsOffSalNumberThe flags that the row should not have. You can combine ROW* flags using the OR (|) operator.

Returns: SalNumber. The sum of all column values or only specified column values in a table window or grid. Returns zero (0) if an error occurs.

Use row flag constants to specify the rows to use to compute the sum. For example, you can choose to sum only the values of modified rows.

Instance memberCompareTo(obj)

compare to an object

ParameterTypeDescription
objObject

Returns: Int32.

Instance memberCompareTo(handle)

compare to a SalWindowHandle

ParameterTypeDescription
handleSalWindowHandle

Returns: Int32.

Instance memberCopyRows(flagsOn, flagsOff)

Copies the contents of the specified table window rows to the Clipboard in text format.

ParameterTypeDescription
flagsOnSalNumber
flagsOffSalNumber

Returns: SalBoolean.

Instance memberCreateColumn(nColumnPos, nDispWidth, nMaxChars, sTitle)

Creates a table window column of string data type at runtime.

ParameterTypeDescription
nColumnPosSalNumber
nDispWidthSalNumber
nMaxCharsSalNumber
sTitleSalString

Returns: SalNumber.

Instance memberCreateColumnEx(nColumnPos, nDispWidth, sTitle, nMaxChars, nDatatype)

Creates a table window column using a given data type at runtime. Allowed types are DT_String, DT_Number and DT_DateTime

ParameterTypeDescription
nColumnPosSalNumber
nDispWidthSalNumber
sTitleSalString
nMaxCharsSalNumber
nDatatypeSalNumber

Returns: SalNumber.

Instance memberDefineCheckBoxColumn(flags, checkedValue, uncheckedValue)

Define a column as a check box.

ParameterTypeDescription
flagsSalNumber
checkedValueSalString
uncheckedValueSalString

Returns: SalBoolean.

Instance memberDefineDropDownListColumn(flags, lines)

Define a column as a drop down list.

ParameterTypeDescription
flagsSalNumber
linesSalNumber

Returns: SalBoolean.

Instance memberDefinePopupEditColumn(flags, lines)

Define a column as a popup edit window.

ParameterTypeDescription
flagsSalNumber
linesSalNumber

Returns: SalBoolean.

Instance memberDefineRowHeader(title, width, flags, column)

Defines the appearance and behavior of a table window's row header.

ParameterTypeDescription
titleSalStringThe title of the row header column.
widthSalNumberThe width of the row header in pixels.
flagsSalNumberThe row header attributes. You can combine these flags using the OR (|) operator.
columnControlThe column that the row header mirrors.

Returns: SalBoolean. TRUE if the function succeeds and FALSE if it fails.

Instance memberDefineSplitWindow(nRowsLowerHalf, bDragAdjust)

Splits a table window horizontally.

ParameterTypeDescription
nRowsLowerHalfSalNumber
bDragAdjustSalBoolean

Returns: SalBoolean.

Instance memberDeleteListItem(nIndex)

Deletes a list box or combo box entry.

ParameterTypeDescription
nIndexSalNumber

Returns: SalNumber.

Instance memberDeleteRow(nRow, nFlag)

Deletes a row from a table window but not from the database.

ParameterTypeDescription
nRowSalNumber
nFlagSalNumber

Returns: SalBoolean.

Instance memberDeleteSelected(hSql)

Applies a SQL DELETE statement to all table window rows with the ROW Selected flag.

ParameterTypeDescription
hSqlSalSqlHandle

Returns: SalBoolean.

Instance memberDeleteSelected(hSql, errorHandler)

Applies a SQL DELETE statement to all table window rows with the ROW Selected flag.

ParameterTypeDescription
hSqlSalSqlHandle
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberDestroyColumns()

Destroys all automatic columns created by SalTblCreateColumn or SalTblPopulate at runtime. This function only works on table windows that contain only automatic columns.

Returns: SalBoolean.

Instance memberDestroyWindow()

Destroys a form window, a top-level table window, or a modeless dialog box created with SalCreateWindow.

Returns: SalBoolean.

Instance memberDisableWindow()

Disables keyboard and mouse input to a window. If the window contains text (for example, a push button), the text is grayed. If the window is a data field, it cannot receive the focus.

Returns: SalBoolean.

Instance memberDisableWindowAndLabel()

Disables keyboard and mouse input to a window and grays out its associated label. A label is the label control that immediately precedes the window in the outline. The label control must have a mnemonic. If the window contains text (for example, a push button), the text is grayed. If the window is a data field, it cannot receive the focus.

Returns: SalBoolean.

Instance memberDoDeletes(hSql, flagsOn)

Applies a SQL DELETE statement to all table window rows that have flagsOn flags.

ParameterTypeDescription
hSqlSalSqlHandle
flagsOnSalNumber

Returns: SalBoolean.

Instance memberDoDeletes(hSql, flagsOn, errorHandler)

Applies a SQL DELETE statement to all table window rows that have flagsOn flags.

ParameterTypeDescription
hSqlSalSqlHandle
flagsOnSalNumber
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberDoInserts(hSql, bClearFlags)

Applies a SQL INSERT statement to all the rows in a table window that have the ROW New flag.

ParameterTypeDescription
hSqlSalSqlHandle
bClearFlagsSalBoolean

Returns: SalBoolean.

Instance memberDoInserts(hSql, bClearFlags, errorHandler)

Applies a SQL INSERT statement to all the rows in a table window that have the ROW New flag.

ParameterTypeDescription
hSqlSalSqlHandle
bClearFlagsSalBoolean
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberDoUpdates(hSql, bClearFlags)

Applies a SQL UPDATE statement to all table window rows with the Row Edited flag.

ParameterTypeDescription
hSqlSalSqlHandle
bClearFlagsSalBoolean

Returns: SalBoolean.

Instance memberDoUpdates(hSql, bClearFlags, errorHandler)

Applies a SQL UPDATE statement to all table window rows with the Row Edited flag.

ParameterTypeDescription
hSqlSalSqlHandle
bClearFlagsSalBoolean
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberDrawMenuBar()

Redraws the menu bar for a given form window or top-level table window.

Returns: SalBoolean.

Instance memberEnableWindow()

Enables keyboard and mouse input to a window.

Returns: SalBoolean.

Instance memberEnableWindowAndLabel()

Enables keyboard and mouse input to a window and enables its associated label as well. A label is the label control that immediately precedes the window in the outline.

Returns: SalBoolean.

Instance memberEndDialog(nReturn)

Destroys a modal dialog box and returns control to the caller of SalModalDialog.

ParameterTypeDescription
nReturnSalNumber

Returns: SalBoolean.

Instance memberFetchRow(nRow)

Sends a SAM_FetchRow message to a table window if the row you specify is not currently in the table window cache.

ParameterTypeDescription
nRowSalNumber

Returns: SalNumber.

Instance memberFindChild(windowName)

This function finds a child window of a given name in the specified window.

ParameterTypeDescription
windowNameSalString

Returns: SalWindowHandle.

Instance memberFindControl(name)

Finds a member control in the specified control. Used as a helper functions to resolve unqualified references.

ParameterTypeDescription
nameString

Returns: Control.

Instance memberFindMember(name)

Find a member in the specified control. Used as a helper functions to resolve unqualified references.

ParameterTypeDescription
nameString

Returns: ReferenceInfo.

Instance memberFindNextRow(Row, flagsOn, flagsOff)

ParameterTypeDescription
RowSalNumber&
flagsOnSalNumber
flagsOffSalNumber

Returns: SalBoolean.

Instance memberFindPrevRow(Row, flagsOn, flagsOff)

ParameterTypeDescription
RowSalNumber&
flagsOnSalNumber
flagsOffSalNumber

Returns: SalBoolean.

Instance memberFireWindowActions(msg, mywParam, mylParam)

Dispatches the specified message (Window Actions) directly to the control's WindowActions event handlers, without going through Windows message loop.

ParameterTypeDescription
msgSalNumber
mywParamSalNumber
mylParamSalNumber

Returns: SalNumber.

Instance memberFireWindowActionsToChildren(nMsg, nMywParam, nMylParam)

Dispatches the specified message (Window Actions) directly to the children's WindowActions event handlers, without going through Windows message loop.

ParameterTypeDescription
nMsgInt32
nMywParamSalNumber
nMylParamSalNumber

Returns: SalBoolean.

Instance memberFormUnitsToPixels(formUnits, vertical)

Computes the number of pixels in the number of form units. Form units are a unit of measurement used by functions which move and position objects. Form units are computed using physical units (pixels) in conjunction with the window's font size.

ParameterTypeDescription
formUnitsSalNumberThe number of form units.
verticalSalBooleanIf the form units are on the X axis, set this parameter to FALSE. If the form units are on the Y axis, set this parameter to TRUE.

Returns: SalNumber.

Instance memberGetCellType(type)

ParameterTypeDescription
typeSalNumber&

Returns: SalBoolean.

Instance memberGetCellType()

Indicates whether a column is a check box, drop down list, popup edit, or standard column.

Returns: SalNumber.

Instance memberGetClassName()

Return the name of a window's class as a string.

Returns: SalString.

Instance memberGetColumnFlags(flags)

Tests the state of a table window column's flags.

ParameterTypeDescription
flagsSalNumber

Returns: SalBoolean.

Instance memberGetColumnID()

Gets a table window column's identifier.

Returns: SalNumber.

Instance memberGetColumnPosition()

Gets a table window column's relative position.

Returns: SalNumber.

Instance memberGetColumnText(columnID, text)

ParameterTypeDescription
columnIDSalNumber
textSalString&

Returns: SalBoolean.

Instance memberGetColumnText(columnID)

Gets data from a column of a table window's context row.

ParameterTypeDescription
columnIDSalNumber

Returns: SalString.

Instance memberGetColumnTitle(text, maxLen)

ParameterTypeDescription
textSalString&
maxLenSalNumber

Returns: SalNumber.

Instance memberGetColumnTitle(maxLen)

Gets the title of a table window column.

ParameterTypeDescription
maxLenSalNumber

Returns: SalString.

Instance memberGetColumnWidth(formUnits)

ParameterTypeDescription
formUnitsSalNumber&

Returns: SalBoolean.

Instance memberGetColumnWidth()

Returns the width (in form units) of a table window column.

Returns: SalNumber.

Instance memberGetColumnWindow(col, flags)

Gets the handle of a table window column.

ParameterTypeDescription
colSalNumber
flagsSalNumber

Returns: SalWindowHandle.

Instance memberGetContextRow()

Returns a table window's current context row. Before sending a SAM_FetchRow message, automatically sets the context row so that assignments made while processing the message reference the correct row.

Returns: SalNumber.

Instance memberGetControlType()

Returns an object's type.

Returns: SalNumber.

Instance memberGetDataLength()

Returns the maximum length of a data field, multi line text field, or table window column.

Returns: SalNumber.

Instance memberGetDataType()

Returns a data field's or table window column's data type.

Returns: SalNumber.

Instance memberGetDefaultButton()

Returns the handle of the default push button on a form window or dialog box. The default push button is the one that has the focus by default.

Returns: SalWindowHandle.

Instance memberGetFirstChild(typeMask)

Returns the handle of the first child window of the specified type. You can use this function to get the handles of MDI child windows.

ParameterTypeDescription
typeMaskSalNumberOne or more window types combined (using the OR (|) operator) to create a mask of child window types.

Returns: SalWindowHandle.

Instance memberGetFont(name, size, enhancement)

ParameterTypeDescription
nameSalString&
sizeSalNumber&
enhancementSalNumber&

Returns: SalBoolean.

Instance memberGetFormat(sPicture)

ParameterTypeDescription
sPictureSalString&

Returns: SalBoolean.

Instance memberGetFormat()

Gets the picture format of a data field or table window column.

Returns: SalString.

Instance memberGetFormatCode()

Returns the current format of a data field or table window column.

Returns: SalNumber.

Instance memberGetFormattedText(sText, bFormat)

ParameterTypeDescription
sTextSalString&
bFormatSalBoolean

Returns: SalBoolean.

Instance memberGetFormattedText(bFormat)

Copies the contents of a data field or table window column to a string. This function also lets you copy the format of the data.

ParameterTypeDescription
bFormatSalBoolean

Returns: SalString.

Instance memberGetImageBytes(buffer, type)

ParameterTypeDescription
bufferSalString&
typeSalNumber&

Returns: SalNumber.

Instance memberGetImageBytes(buffer, type)

ParameterTypeDescription
bufferSalBinary&
typeSalNumber&

Returns: SalNumber.

Instance memberGetImageDescription(desc, maxLen)

ParameterTypeDescription
descSalString&
maxLenSalNumber

Returns: SalNumber.

Instance memberGetImageDescription(maxLen)

Retrieves a description of a picture's contents.

ParameterTypeDescription
maxLenSalNumber

Returns: SalString.

Instance memberGetImageString(format, pict)

ParameterTypeDescription
formatSalNumber
pictSalString&

Returns: SalNumber.

Instance memberGetImageString(format)

Return the contents of a picture into a string.

ParameterTypeDescription
formatSalNumber

Returns: SalString.

Instance memberGetImageString(format, buffer)

ParameterTypeDescription
formatSalNumber
bufferSalBinary&

Returns: SalNumber.

Instance memberGetInputMask(sMask)

ParameterTypeDescription
sMaskSalString&

Returns: SalBoolean.

Instance memberGetInputMask()

Gets the input mask of a data field or table window column.

Returns: SalString.

Instance memberGetLabel()

Retrieves the window handle of the label (label control) that is associated with the hWndTarget parameter. There must be a mnemonic in that label, and it must immediately precede hWndTarget in the outline, or this function will fail.

Returns: SalWindowHandle.

Instance memberGetLabelText(sText, nMaxLength)

ParameterTypeDescription
sTextSalString&
nMaxLengthSalNumber

Returns: SalNumber.

Instance memberGetLabelText(nMaxLength)

Retrieves the text of the label associated to a control. Important: The label control does not require a mnemonic for the functions listed above to operate.

ParameterTypeDescription
nMaxLengthSalNumber

Returns: SalString.

Instance memberGetLinesPerRow(lines)

ParameterTypeDescription
linesSalNumber&

Returns: SalBoolean.

Instance memberGetLinesPerRow()

Retrieves the height of a row in lines.

Returns: SalNumber.

Instance memberGetListItemsCount()

Returns the number of list box or combo box entries.

Returns: SalNumber.

Instance memberGetListItemState(nIndex)

Determines whether the specified list box or combo box entry is selected.

ParameterTypeDescription
nIndexSalNumber

Returns: SalBoolean.

Instance memberGetListItemText(nIndex, sText)

ParameterTypeDescription
nIndexSalNumber
sTextSalString&

Returns: SalNumber.

Instance memberGetListItemText(nIndex)

Returns the text of the specified item.

ParameterTypeDescription
nIndexSalNumber

Returns: SalString.

Instance memberGetListItemTextLength(nIndex)

Returns the length of a list box or combo box entry.

ParameterTypeDescription
nIndexSalNumber

Returns: SalNumber.

Instance memberGetListSelectedFile(sFileName)

ParameterTypeDescription
sFileNameSalString&

Returns: SalBoolean.

Instance memberGetListSelectedFile()

Fetches the selected directory or file name from a list box or combo box.

Returns: SalString. Name of the selected file in t he control.

Instance memberGetListSelectedIndex()

Returns the index of the selected entry in a combo box or single-selection list box.

Returns: SalNumber.

Instance memberGetListSelectedItems(nSelectedArray)

Returns an array of index numbers of selected list box entries.

ParameterTypeDescription
nSelectedArraySalArray<SalNumber>

Returns: SalBoolean.

Instance memberGetListSelectedItemsCount()

Returns the number of selected entries in a multiple-selection list box. Specify single- or multiple-selection in the list box's customizer.

Returns: SalNumber.

Instance memberGetLocation(x, y)

ParameterTypeDescription
xSalNumber&
ySalNumber&

Returns: SalBoolean.

Instance memberGetLockedColumns()

Retrieves the number of locked table window columns.

Returns: SalNumber.

Instance memberGetName(text)

ParameterTypeDescription
textSalString&

Returns: SalBoolean.

Instance memberGetName()

Gets the name of an object.

Returns: SalString.

Instance memberGetNextChild(typeMask)

Returns the handle of the next child window that matches a specified type.

ParameterTypeDescription
typeMaskSalNumberOne or more window types combined (using the OR (|) operator) to create a mask of child window types.

Returns: SalWindowHandle.

Instance memberGetObjectData(info, context)

get object data

ParameterTypeDescription
infoSerializationInfo
contextStreamingContext

Instance memberGetParent()

Returns the handle of an object's parent window.

Returns: SalWindowHandle.

Instance memberGetProperty(name, value)

ParameterTypeDescription
nameSalString
valueSalString&

Returns: SalBoolean.

Instance memberGetProperty(name)

Gets the value of a named property.

ParameterTypeDescription
nameSalString

Returns: SalString.

Instance memberGetRowFlags(row, flags)

Queries a row's flags.

ParameterTypeDescription
rowSalNumber
flagsSalNumber

Returns: SalBoolean.

Instance memberGetScrollBarPosition(pos)

ParameterTypeDescription
posSalNumber&

Returns: SalBoolean.

Instance memberGetScrollBarPosition()

Returns the current scroll bar value.

Returns: SalNumber.

Instance memberGetScrollBarRange(min, max, line, page)

ParameterTypeDescription
minSalNumber&
maxSalNumber&
lineSalNumber&
pageSalNumber&

Returns: SalBoolean.

Instance memberGetSize(width, height)

ParameterTypeDescription
widthSalNumber&
heightSalNumber&

Returns: SalBoolean.

Instance memberGetStatusBarText(sText, nMaxLen)

ParameterTypeDescription
sTextSalString&
nMaxLenSalNumber

Returns: SalNumber.

Instance memberGetStatusBarText(nMaxLen)

Gets the text displayed in the status bar of a top-level or MDI window.

ParameterTypeDescription
nMaxLenSalNumber

Returns: SalString.

Instance memberGetTableFlags(flags)

Tests the state of a table window's flags.

ParameterTypeDescription
flagsSalNumber

Returns: SalBoolean.

Instance memberGetText(text, maxLen)

ParameterTypeDescription
textSalString&
maxLenSalNumber

Returns: SalNumber.

Instance memberGetText(maxLen)

Retrieves the text of a window.

ParameterTypeDescription
maxLenSalNumber

Returns: SalString.

Instance memberGetTextUnmasked(sText)

ParameterTypeDescription
sTextSalString&

Returns: SalBoolean.

Instance memberGetTextUnmasked()

Unmasks the text from a masked edit control.

Returns: SalString.

Instance memberGetWindowColor(colorIndex)

Gets a window's color.

ParameterTypeDescription
colorIndexSalNumber

Returns: SalNumber.

Instance memberGetWindowState()

Returns a window's current state.

Returns: SalNumber.

Instance memberHideWindow()

Hides a window.

Returns: SalBoolean.

Instance memberHideWindowAndLabel()

Hides a window and its associated label.

Returns: SalBoolean.

Instance memberHitTest(x, y, row, col, flags)

ParameterTypeDescription
xSalNumber
ySalNumber
rowSalNumber&
colSalWindowHandle&
flagsSalNumber&

Returns: SalBoolean.

Instance memberInsertListItem(nIndex, sAdd)

Inserts an entry into a list box or combo box at a specified position.

ParameterTypeDescription
nIndexSalNumber
sAddSalString

Returns: SalNumber.

Instance memberInsertRow(row)

Inserts a new blank row into a table window.

ParameterTypeDescription
rowSalNumber

Returns: SalNumber.

Instance memberInvalidateWindow()

Causes a window to be repainted.

Returns: SalBoolean.

Instance memberIsChecked()

Determines whether a radio button is set or a check box is checked.

Returns: SalBoolean.

Instance memberIsDerivedFromClass(typeClass)

Determines whether a window is an instance of the specified class.

ParameterTypeDescription
typeClassType

Returns: SalBoolean.

Instance memberIsEmpty()

Verifies whether a data field, multi line text field, or table window column is null or empty.

Returns: SalBoolean.

Instance memberIsEnabled()

Determines whether a window is enabled for mouse and keyboard input.

Returns: SalBoolean.

Instance memberIsModified()

Returns the setting of the Field Edit Flag for a data field, multi line field, combo box, table window's context row cell, or picture.

Returns: SalBoolean.

Instance memberIsValid()

Validates the contents of a data field or table window column using the current profile.

Returns: SalBoolean.

Instance memberIsValidDateTime()

Verifies whether a data field, multi line text field, or table window column contains a valid date/time value. For multi line text fields, the date/time value must be the only item in the field.

Returns: SalBoolean.

Instance memberIsValidDecimal(nPrecision, nScale)

Verifies whether a data field, multi line text field, or table window column contains a valid decimal value. For multi line text fields, the decimal value must be the only item in the field.

ParameterTypeDescription
nPrecisionSalNumber
nScaleSalNumber

Returns: SalBoolean.

Instance memberIsValidInteger()

Verifies whether a data field, multi line text field, or table window column contains a valid integer value. For multi line text fields, the integer value must be the only item in the field.

Returns: SalBoolean.

Instance memberIsValidNumber()

Verifies whether a data field, multi line text field, or table window column contains a valid numeric value. Valid numbers are integers or floating point numbers, negative and positive. For multi line text fields, the numeric value must be the only item in the field.

Returns: SalBoolean.

Instance memberIsVisible()

Determines whether a window is currently visible.

Returns: SalBoolean.

Instance memberKillCellEdit()

Takes a row out of edit mode and selects the row. This causes the row to receive both SAM_Validate and SAM_KillFocus messages.

Returns: SalBoolean.

Instance memberKillFocusRow()

Turns off the table window's focus frame.

Returns: SalBoolean.

Instance memberKillTimer(idEvent)

Destroys an object's system timer.

ParameterTypeDescription
idEventSalNumber

Returns: SalBoolean.

Instance memberMDIArrangeIcons()

Arranges minimized child window icons in an MDI window.

Returns: SalBoolean.

Instance memberMDICascade()

Cascades all non-iconized child windows of an MDI window.

Returns: SalBoolean.

Instance memberMDITile(bPosition)

Tiles all non-iconized child windows of an MDI window. Windows that are not sizable will not be tiled.

ParameterTypeDescription
bPositionSalBoolean

Returns: SalBoolean.

Instance memberMoveWindow(xOffset, yOffset)

Moves a window a given number of form units on the X and Y axes relative to its current position.

ParameterTypeDescription
xOffsetSalNumber
yOffsetSalNumber

Returns: SalBoolean.

Adds a new group to the specified pane of a navigation bar.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane to which you want to add a group.
groupIndexSalNumberZero-based index that the new group will occupy.
groupTitleSalStringThe title of the new group.
heightSalNumberThe height of the new group in form units.

Returns: SalBoolean.

Inserts a pane into the navigation bar control.

ParameterTypeDescription
paneIndexSalNumberIndicates a zero-based pane index. The new pane will be inserted after the pane indicated by nPaneIndex. Use -1 to append as the last pane.
nameSalStringName of the new pane (object title)
expandedImageSalStringFile name of the image to display for the new pane when it is expanded.
collapsedImageSalStringFile name of the image to display for the new pane when it is collapsed.

Returns: SalBoolean.

Associates a control to a pane.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane.
groupIndexSalNumberZero-based index of the group. If the pane has no groups, use zero.
childControlthe control you're associating to the pane.

Returns: SalBoolean.

Disassociates a control from a pane.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane
childControlThe control you're disassociating

Returns: SalBoolean.

Enables or disables a pane on the navigation bar.

ParameterTypeDescription
paneIndexSalNumberIndex for the pane to enable (start at 0).
enableSalBooleanSet TRUE to enable pane, FALSE to disable.

Returns: SalBoolean.

Expands or collapses a group.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane
groupIndexSalNumberZero-based index of the group
expandSalBooleanSet to TRUE to expand, FALSE to collapse

Returns: SalBoolean.

Returns the index of the currently selected pane.

Returns: SalNumber. The zero-based index of the currently selected pane.

ParameterTypeDescription
paneIndexSalNumber
binarySalBinary&
formatSalNumber
expandedSalBoolean

Returns: SalBoolean.

Finds the pane by its name and returns a zero-based index of the pane if successful or -1 if the pane is not found.

ParameterTypeDescription
nameSalStringThe name of the pane (object title)

Returns: SalNumber. the zero-based index of the pane. If the pane is not found, nIndex is -1.

ParameterTypeDescription
paneIndexSalNumber
titleSalString&

Returns: SalBoolean.

Returns the title of a pane.

ParameterTypeDescription
paneIndexSalNumberIndex for the pane whose title you want to get (start at 0)

Returns: SalString.

Retrieves the group status. The function returns true if the group is expanded; false if collapsed.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane
groupIndexSalNumberZero-based index of the group

Returns: SalBoolean.

Restore the settings of a navigation bar from an XML string.

ParameterTypeDescription
xmlSalString

Returns: SalBoolean.

Returns true if the pane is enabled (visible in the pane navigator); false if disabled (not visible).

ParameterTypeDescription
paneIndexSalNumberIndex of pane (start at 0).

Returns: SalBoolean.

Removes a group from the navigation bar control.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane to be removed.
groupIndexSalNumberZero-based index of the group to remove.

Returns: SalBoolean.

Removes a pane from the navigation bar control.

ParameterTypeDescription
paneIndexSalNumberZero-based index of the pane to be removed.

Returns: SalBoolean.

ParameterTypeDescription
xmlSalString&

Returns: SalBoolean.

Activates the indicated pane.

ParameterTypeDescription
paneIndexSalNumberThe zero-based index of the pane to activate.

Returns: SalBoolean.

Sets the title of a pane.

ParameterTypeDescription
paneIndexSalNumberIndex for the pane.
binarySalBinaryBuffer that stores the image (bmp or icon).
formatSalNumberIndicates the image format. Use PIC_FormatIcon or PIC_FormatBitmap.
expandedSalBooleanTRUE for "expanded" image, FALSE for "collapsed" image

Returns: SalBoolean.

Sets the title of a pane.

ParameterTypeDescription
paneIndexSalNumberIndex for the pane whose title you want to get (start at 0).
titleSalStringThe new title for the pane.

Returns: SalBoolean.

Instance memberPasteRows()

Pastes the contents of the Clipboard to the specified table window. Assumes the Clipboard data is in text format with cells delimited by tab characters and rows delimited by end-of-line characters. Inserts the new rows into the table window without overwriting existing rows, and converts the data to the data types of the corresponding table window columns.

Returns: SalBoolean.

Instance memberPixelsToFormUnits(numPixels, vertical)

Computes the number of form units based on the number of pixels. Form units are a unit of measurement used by functions that move and position objects. Form units are computed using physical units (pixels) in conjunction with a window's font sizes.

ParameterTypeDescription
numPixelsSalNumber
verticalSalBooleanIf the form units are on the X axis, set this parameter to FALSE. If the form units are on the Y axis, set this parameter to TRUE.

Returns: SalNumber.

Instance memberPopulate(hSql, select, method)

Compiles, binds, and executes a SQL SELECT statement, then fetches the rows of the result set and populates a table window with them.

ParameterTypeDescription
hSqlSalSqlHandle
selectSalString
methodSalNumber

Returns: SalBoolean.

Instance memberPopulate(hSql, select, method, errorHandler)

Compiles, binds, and executes a SQL SELECT statement, then fetches the rows of the result set and populates a table window with them.

ParameterTypeDescription
hSqlSalSqlHandle
selectSalString
methodSalNumber
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberPopulate(hSql, select)

Compiles, binds, and executes a SQL SELECT statement, then fetches the rows of the result set and populates a table window with them.

ParameterTypeDescription
hSqlSalSqlHandle
selectSalString

Returns: SalBoolean.

Instance memberPopulate(hSql, select, errorHandler)

Compiles, binds, and executes a SQL SELECT statement, then fetches the rows of the result set and populates a table window with them.

ParameterTypeDescription
hSqlSalSqlHandle
selectSalString
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberPopulateList(hSql, sSelect)

Populates a list box or combo box with a result set. SalListPopulate overrides any settings made with SalListSetTabs. If the SELECT statement returns data from multiple columns, each column's data displayed in a list box is separated by tabs. However, due to a Microsoft Windows limitation, each column's data displayed in a combo box is separated by a single '|' character. There is no space between one column's data, the separator character, and another column's data.

ParameterTypeDescription
hSqlSalSqlHandle
sSelectSalString

Returns: SalBoolean.

Instance memberPopulateList(hSql, sSelect, errorHandler)

Populates a list box or combo box with a result set. SalListPopulate overrides any settings made with SalListSetTabs. If the SELECT statement returns data from multiple columns, each column's data displayed in a list box is separated by tabs. However, due to a Microsoft Windows limitation, each column's data displayed in a combo box is separated by a single '|' character. There is no space between one column's data, the separator character, and another column's data.

ParameterTypeDescription
hSqlSalSqlHandle
sSelectSalString
errorHandlerWhenSqlErrorHandler

Returns: SalBoolean.

Instance memberPopulateListFiles(ctrlPath, sPathName, nAttributes)

ParameterTypeDescription
ctrlPathControl
sPathNameSalString&
nAttributesSalNumber

Returns: SalBoolean.

Instance memberPostMessage(msg, mywParam, mylParam)

Posts the specified message to a window by adding nMsg to hWndReceiver's message queue.

ParameterTypeDescription
msgSalNumber
mywParamSalNumber
mylParamSalNumber

Returns: SalBoolean.

Instance memberQueryCheckBoxColumn(flags, checkedValue, uncheckedValue)

ParameterTypeDescription
flagsSalNumber&
checkedValueSalString&
uncheckedValueSalString&

Returns: SalBoolean.

Instance memberQueryDropDownListColumn(flags, lines)

ParameterTypeDescription
flagsSalNumber&
linesSalNumber&

Returns: SalBoolean.

Instance memberQueryFocusCell(nRow, hWndCol)

ParameterTypeDescription
nRowSalNumber&
hWndColSalWindowHandle&

Returns: SalBoolean.

Instance memberQueryPopupEditColumn(flags, lines)

ParameterTypeDescription
flagsSalNumber&
linesSalNumber&

Returns: SalBoolean.

Instance memberQueryRowHeader(title, maxTitle, width, flags, col)

ParameterTypeDescription
titleSalString&
maxTitleSalNumber
widthSalNumber&
flagsSalNumber&
colSalWindowHandle&

Returns: SalBoolean.

Instance memberQueryScroll(position, minRange, maxRange)

ParameterTypeDescription
positionSalNumber&
minRangeSalNumber&
maxRangeSalNumber&

Returns: SalBoolean.

Instance memberQuerySplitWindow(nRowsLowerHalf, bDragAdjust)

ParameterTypeDescription
nRowsLowerHalfSalNumber&
bDragAdjustSalBoolean&

Returns: SalBoolean.

Instance memberQueryVisibleRange(minRange, maxRange)

ParameterTypeDescription
minRangeSalNumber&
maxRangeSalNumber&

Returns: SalBoolean.

Instance memberResetTable()

Clears a table window by discarding all rows from the table window cache and setting the table range to 0, -1.

Returns: SalBoolean.

Instance memberScrollRow(row, column, flags)

Scrolls a table window to the specified row and column.

ParameterTypeDescription
rowSalNumber
columnControl
flagsSalNumber

Returns: SalBoolean.

Instance memberScrollRow(row, column)

Scrolls a table window to the specified row and column.

ParameterTypeDescription
rowSalNumber
columnControl

Returns: SalBoolean.

Instance memberSendMessage(msg, mywParam, mylParam)

Sends the specified message to a window. SalSendMsg does not return until the processing for the message is complete.

ParameterTypeDescription
msgSalNumber
mywParamSalNumber
mylParamSalNumber

Returns: SalNumber.

Instance memberSendMessageToChildren(msg, mywParam, mylParam)

Sends a message to all child items of a form window, dialog box, table window, or MDI window.

ParameterTypeDescription
msgSalNumber
mywParamSalNumber
mylParamSalNumber

Returns: SalBoolean.

Instance memberSetCellTextColor(color, discardable)

Changes a table window cell's text color.

ParameterTypeDescription
colorSalNumber
discardableSalBoolean

Returns: SalBoolean.

Instance memberSetCellTextColor(color)

Changes a table window cell's text color.

ParameterTypeDescription
colorSalNumber

Returns: SalBoolean.

Instance memberSetColumnFlags(flags, set)

Sets or clears a table window column's flags.

ParameterTypeDescription
flagsSalNumber
setSalBoolean

Returns: SalBoolean.

Instance memberSetColumnPos(pos)

Moves a table window column to a new position.

ParameterTypeDescription
posSalNumber

Returns: SalBoolean.

Instance memberSetColumnPosition(pos)

Moves a table window column to a new position.

ParameterTypeDescription
posSalNumber

Returns: SalBoolean.

Instance memberSetColumnText(columnID, text)

Assigns data to a column of a table window's context row.

ParameterTypeDescription
columnIDSalNumber
textSalString

Returns: SalBoolean.

Instance memberSetColumnTitle(title)

Sets the title of a table window column.

ParameterTypeDescription
titleSalString

Returns: SalBoolean.

Instance memberSetColumnWidth(formUnits)

Sets a table window column's display width.

ParameterTypeDescription
formUnitsSalNumberThe number of form units.

Returns: SalBoolean.

Instance memberSetContextMenu(sMenuName, nFlags)

Defines a named popup menu that displays automatically when a window receives SAM_ContextMenu.

ParameterTypeDescription
sMenuNameSalString
nFlagsSalNumber

Returns: SalBoolean.

Instance memberSetContextMenu(menuType, flags)

Defines a named popup menu that displays automatically when a window receives SAM_ContextMenu.

ParameterTypeDescription
menuTypeType
flagsSalNumber

Returns: SalBoolean.

Instance memberSetContextRow(row)

Sets a table window's context row. Setting the context row does not send a SAM_FetchRow message. If the row is not currently in memory, creates a new row in memory and sets its cell values to null.

ParameterTypeDescription
rowSalNumber

Returns: SalBoolean.

Instance memberSetCursor(resource, type)

Sets a window's cursor.

ParameterTypeDescription
resourceSalResourceCursor
typeSalNumber

Returns: SalBoolean.

Instance memberSetCursor(resourceId, type)

Sets a window's cursor.

ParameterTypeDescription
resourceIdInt32
typeSalNumber

Returns: SalBoolean.

Instance memberSetCursor(blob, type)

Sets a window's cursor from a string variable.

ParameterTypeDescription
blobSalString
typeSalNumber

Returns: SalBoolean.

Instance memberSetCursorFile(file, type)

Sets an application-defined cursor for the specified window. Use this function to set the cursor from an image stored in a file.

ParameterTypeDescription
fileSalString
typeSalNumber

Returns: SalBoolean.

Instance memberSetDataLength(length)

Sets a limit on the number of characters that a user can enter into a data field, multi line text field, or table window column.

ParameterTypeDescription
lengthSalNumber

Returns: SalBoolean.

Instance memberSetDefaultButton()

Sets the default push button of a form window or dialog box.

Returns: SalBoolean.

Instance memberSetFlagsAnyRows(flags, set, flagsOn, flagsOff)

Sets or clears row flags.

ParameterTypeDescription
flagsSalNumber
setSalBoolean
flagsOnSalNumber
flagsOffSalNumber

Returns: SalBoolean.

Instance memberSetFocus()

Sets the focus to a specified window.

Returns: SalWindowHandle.

Instance memberSetFocusCell(row, column, editMin, editMax)

Sets the focus to the specified table window cell (row and column). Puts the table window into edit mode and lets the user select a portion of the data in the cell.

ParameterTypeDescription
rowSalNumber
columnControl
editMinSalNumber
editMaxSalNumber

Returns: SalBoolean.

Instance memberSetFocusRow(row)

Sets a table window's focus frame row.

ParameterTypeDescription
rowSalNumber

Returns: SalBoolean.

Instance memberSetFont(name, size, enhancement)

Sets a window's font, font size, and font enhancements.

ParameterTypeDescription
nameSalString
sizeSalNumber
enhancementSalNumber

Returns: SalBoolean.

Instance memberSetFormat(sPicture)

Sets the picture format of a data field or table window column.

ParameterTypeDescription
sPictureSalString

Returns: SalBoolean.

Instance memberSetFormatCode(nFormat)

Sets a data field's or table window column's format.

ParameterTypeDescription
nFormatSalNumber

Returns: SalBoolean.

Instance memberSetImageBytes(imageBytes, type)

Inserts the contents of a picture to an image without the image header.

ParameterTypeDescription
imageBytesSalString
typeSalNumber

Returns: SalBoolean.

Instance memberSetImageFile(fileName)

Inserts a file's contents into a picture.

ParameterTypeDescription
fileNameSalString

Returns: SalBoolean.

Instance memberSetImageFit(fit, scaleWidth, scaleHeight)

Sets the fit for a picture.

ParameterTypeDescription
fitSalNumber
scaleWidthSalNumber
scaleHeightSalNumber

Returns: SalBoolean.

Instance memberSetImageHandle(type, handle)

Sets the picture image of a picture window with the handle of a bitmap (HBITMAP) or icon (HICON). Usually, HBITMAPs and HICONs are loaded from DLLs.

ParameterTypeDescription
typeSalNumber
handleSalNumber

Returns: SalBoolean.

Instance memberSetImageResource(resource, format)

Inserts a resource into a picture.

ParameterTypeDescription
resourceSalResource
formatSalNumber

Returns: SalBoolean.

Instance memberSetImageString(format, picture)

Inserts the contents of a string into a picture.

ParameterTypeDescription
formatSalNumber
pictureSalString

Returns: SalBoolean.

Instance memberSetImageString(format, buffer)

Inserts the contents of a binary buffer into a picture.

ParameterTypeDescription
formatSalNumber
bufferSalBinary

Returns: SalBoolean.

Instance memberSetInputMask(sMask)

Sets the input mask of a data field or table window column.

ParameterTypeDescription
sMaskSalString

Returns: SalBoolean.

Instance memberSetLabelText(sText)

Sets the text of the associated label control.

ParameterTypeDescription
sTextSalString

Returns: SalBoolean.

Instance memberSetLinesPerRow(lines)

Sets the height of a row in lines.

ParameterTypeDescription
linesSalNumber

Returns: SalBoolean.

Instance memberSetListRedraw(bRedraw)

Redraws entries in a list box or combo box, or prevents them from being redrawn.

ParameterTypeDescription
bRedrawSalNumber

Returns: SalBoolean.

Instance memberSetListSelectedIndex(nIndex)

Selects or deselects a combo box or single-selection list box entry.

ParameterTypeDescription
nIndexSalNumber

Returns: SalBoolean.

Instance memberSetListSelectedItems(nIndex, bSelect)

Selects or deselects a combo box or multiple-selection list box entry.

ParameterTypeDescription
nIndexSalNumber
bSelectSalBoolean

Returns: SalBoolean.

Instance memberSetListSelectedText(nIndexStart, sText)

Finds and selects a combo box or single-selection list box entry.

ParameterTypeDescription
nIndexStartSalNumber
sTextSalString

Returns: SalNumber.

Instance memberSetListTabStops(nTabStops)

Sets tabs in a list box.

ParameterTypeDescription
nTabStopsSalArray<SalNumber>

Returns: SalBoolean.

Instance memberSetLocation(x, y)

Moves a window to a new position (x, y) on the X and Y axes.

ParameterTypeDescription
xSalNumber
ySalNumber

Returns: SalBoolean.

Instance memberSetLockedColumns(lockedColumns)

Sets the number of locked table window columns.

ParameterTypeDescription
lockedColumnsSalNumber

Returns: SalBoolean.

Instance memberSetModified(bSet)

Sets or clears the field edit flag for an editable data field, combo box, multi line text field, table window column, or picture.

ParameterTypeDescription
bSetSalBoolean

Returns: SalBoolean.

Instance memberSetProperty(name, value, length)

Sets the value of a named property.

ParameterTypeDescription
nameSalString
valueSalString
lengthSalNumber

Returns: SalBoolean.

Instance memberSetRange(min, max)

Defines the minimum and maximum rows (range) of a table.

ParameterTypeDescription
minSalNumber
maxSalNumber

Returns: SalBoolean.

Instance memberSetRow(rowPos)

Sets the focus to the first, last, next, or previous row in a table window.

ParameterTypeDescription
rowPosSalNumber

Returns: SalNumber.

Instance memberSetRowFlags(row, flags, set)

Sets or clears a table window row's flags.

ParameterTypeDescription
rowSalNumber
flagsSalNumber
setSalBoolean

Returns: SalBoolean.

Instance memberSetScrollBarPosition(pos)

Sets the scrollbar's value.

ParameterTypeDescription
posSalNumber

Returns: SalBoolean.

Instance memberSetScrollBarRange(min, max, line, page)

Sets a scroll bar's range, line increment, and page increment. When the scroll bar is created, assigns it these values: Minimum scroll position0 Maximum scroll position100 Line Increment1 Page Increment10 If the scroll bar's current position is outside the new range, its position changes to one within the new range. The range of a scroll bar is -32,767 to 32,767.

ParameterTypeDescription
minSalNumber
maxSalNumber
lineSalNumber
pageSalNumber

Returns: SalBoolean.

Instance memberSetSize(width, height)

Resizes a window.

ParameterTypeDescription
widthSalNumber
heightSalNumber

Returns: SalBoolean.

Instance memberSetStatusBarText(sText)

Displays specified text in the status bar of a top-level or MDI window.

ParameterTypeDescription
sTextSalString

Returns: SalBoolean.

Instance memberSetTableFlags(flags, set)

Sets or clears a table window's flags.

ParameterTypeDescription
flagsSalNumber
setSalBoolean

Returns: SalBoolean.

Instance memberSetText(text)

Sets the text of a window.

ParameterTypeDescription
textSalString

Returns: SalBoolean.

Instance memberSetText(sValue, bFormat)

Copies a string to a data field or table window column. After copying the string to the field, formats the string.

ParameterTypeDescription
sValueSalString
bFormatSalBoolean

Returns: SalBoolean.

Instance memberSetTimer(idEvent, elapseMilliSec)

Creates a system timer for a given object. When a timer event occurs, sends SAM_Timer messages to the object in specified intervals. Timers are a limited global resource. Your application must check the value returned by SalTimerSet to verify that the timer was created.

ParameterTypeDescription
idEventSalNumber
elapseMilliSecSalNumber

Returns: SalBoolean.

Instance memberSetWindowColor(colorIndex, color)

Sets a window's color.

ParameterTypeDescription
colorIndexSalNumber
colorSalNumber

Returns: SalBoolean.

Instance memberShowStatusBar(bShow)

Shows or hides the status bar on a top-level or MDI window.

ParameterTypeDescription
bShowSalBoolean

Returns: SalBoolean.

Instance memberShowToolBar(bShow)

Shows or hides the tool bar on a top-level or MDI window.

ParameterTypeDescription
bShowSalBoolean

Returns: SalBoolean.

Instance memberShowWindow()

Makes a window visible.

Returns: SalBoolean.

Instance memberShowWindowAndLabel()

Makes a window and its associated label visible. A label is the label control that immediately precedes the window in the outline.

Returns: SalBoolean.

Instance memberSortRows(columnID, order)

Sorts the rows of a table window based on the values in one of the table window's columns.

ParameterTypeDescription
columnIDSalNumber
orderSalNumber

Returns: SalBoolean.

Instance memberToControl()

Returns the Control associated with this handle.

Returns: Control.

Instance memberToInt32()

Converts a window handle to a number.

Returns: Int32. nWnd

Instance memberToIntPtr()

Returns the IntPtr value.

Returns: IntPtr.

Instance memberToNumber()

Returns the value converted to SalNumber.

Returns: SalNumber.

Instance memberTrackPopupMenu(menuName, flags, x, y)

Creates pop-up menus at runtime.

ParameterTypeDescription
menuNameSalString
flagsSalNumber
xSalNumber
ySalNumber

Returns: SalBoolean.

Instance memberTrackPopupMenu(menuType, flags, x, y)

Creates pop-up menus at runtime.

ParameterTypeDescription
menuTypeType
flagsSalNumber
xSalNumber
ySalNumber

Returns: SalBoolean.

Instance memberUpdateWindow()

Forces the update of a window.

Returns: SalBoolean.

Instance memberValidate()

Validates and formats a data field's or table window column's contents.

Returns: SalBoolean.

Instance memberValidate(validate)

Validates and formats a data field's or table window column's contents.

ParameterTypeDescription
validateSalNumber

Returns: SalBoolean.

Instance memberWinHelp(file, command, numData, strData)

Starts the Windows help system.

ParameterTypeDescription
fileSalString
commandSalNumber
numDataSalNumber
strDataSalString

Returns: SalBoolean.

Instance memberYield()

Processes messages for this control.

Used By

NameDescription
Sal.ValidateSetNot supported.
Sal.YieldStartMessagesNot Supported.
Sal.TblGetColumnWindowGets the handle of a table window column.
SalNumber.ToWindowHandleConverts a number to a window handle.
SalWindowHandle.GetColumnWindowGets the handle of a table window column.
Sql.ContextSetToFormSets the context to the specified form.
SalNavigationBar.FindChildThis function finds a child window of a given name in the specified window.
SalTreeControl.GetLabelRetrieves the window handle of the label (label control) that is associated with the hWndTarget parameter. There must be a mnemonic in that label, and it must immediately precede hWndTarget in the outline, or this function will fail.
SalActiveX.FindChildThis function finds a child window of a given name in the specified window.
SalBackgroundText.FindChildThis function finds a child window of a given name in the specified window.
SalCheckBox.GetParentReturns the handle of an object's parent window.
SalComboBox.GetLabelRetrieves the window handle of the label (label control) that is associated with the hWndTarget parameter. There must be a mnemonic in that label, and it must immediately precede hWndTarget in the outline, or this function will fail.
SalCustomControl.FindChildThis function finds a child window of a given name in the specified window.
SalDataField.FindChildThis function finds a child window of a given name in the specified window.
SalFrame.FindChildThis function finds a child window of a given name in the specified window.
SalGroupBox.FindChildThis function finds a child window of a given name in the specified window.
SalHorizontalScrollBar.SetFocusSets the focus to a specified window.
SalLine.FindChildThis function finds a child window of a given name in the specified window.
SalListBox.FindChildThis function finds a child window of a given name in the specified window.
SalRibbonBarBase.GetDefaultButtonReturns the handle of the default push button on a form window or dialog box. The default push button is the one that has the focus by default.
WindowActionsEventArgs.hWndReturns the target window handle.
SalMultilineField.FindChildThis function finds a child window of a given name in the specified window.
SalOptionButton.FindChildThis function finds a child window of a given name in the specified window.
SalPicture.GetParentReturns the handle of an object's parent window.
SalPushbutton.GetLabelRetrieves the window handle of the label (label control) that is associated with the hWndTarget parameter. There must be a mnemonic in that label, and it must immediately precede hWndTarget in the outline, or this function will fail.
SalRadioButton.GetFirstChildReturns the handle of the first child window of the specified type. You can use this function to get the handles of MDI child windows.
SalUserControl.FindChildThis function finds a child window of a given name in the specified window.
SalVerticalScrollBar.SetFocusSets the focus to a specified window.
SalForm.GetDefaultButtonReturns the handle of the default push button on a form window or dialog box. The default push button is the one that has the focus by default.
SalFormTableWindow.GetColumnWindowGets the handle of a table window column.
SalWindow.GetFocusReturns the handle of the control with the focus.
SalTableColumn.SetFocusSets the focus to a specified window.
SalTableWindow.SetFocusSets the focus to a specified window.
SalQuickTabs.FromHandleReturns the control associated with the handle.
SalQuickTabs.ShowWindowUse this function instead of SalShowWindow because it works properly with the class function HideWindow
SalQuickTabs.ShowWindowAndLabelUse this function instead of SalShowWindowAndLabel because it works properly with the class function HideWindowAndLabel.
SalQuickTabs.HideWindowUse this function instead of SalHideWindow. This function will keep the window hidden as tabs are selected. Use the class function ShowWindow to undo the affect of this function.
SalQuickTabs.IsWindowVisibleReturns if the specified control is considered to be visible by the tab control and will be shown when the associated tab is selected.
SalQuickTabs.HideWindowAndLabelUse this function instead of SalHideWindowAndLabel. This function will keep the window hidden as tabs are selected. Use the class function ShowWindowWindowAndLabel to undo the affect of this function.
SalQuickTabs.FindTabFrameFinds the tab frame window on a form or dialog box
SalQuickTabsDialog.FromHandleReturns the control associated with the handle.
SalQuickTabsForm.FromHandleReturns the control associated with the handle.
SalQuickTabsParent.TabCreateIndicates that a tab has been created. This function is called when the tab control receives SAM_Create.
SalQuickTabsParent.TabActivateStartIndicates that a tab has been activated. This function is called before the child windows have been shown
SalQuickTabsParent.TabActivateFinishIndicates that a tab has been activated. This function is called after the child windows have been shown
SalQuickTabsParent.TabUserRequestIndicates that user is attempting to change the current tab by clicking, tabbing or some other user action. NOTE: Call CancelMode() to deny the user's request
SalQuickTabsParent.TabFrameResizeIndicates that the size of the tab frame may have changed
SalQuickTabsParent.TabSetFormPageSizeDefine the page size for child forms created on the tab frame. This function can be overriden in the tab form or tab dialog box
SalQuickTabsParent.FromHandleReturns the control associated with the handle.
SalQuickToolTipCheckBox.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipCheckBox.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipChildTable.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipComboBox.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipDataField.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipHScrollBar.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipListBox.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipMultilineField.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipOptionButton.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPicture.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipPushButton.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipRadioButton.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipTableWindow.IsToolMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.AddToolMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.SetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.SetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.GetTipTextMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.DeleteToolMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.GetStatusTextMultiple Inheritance: Wrapper function.
SalQuickToolTipVScrollBar.IsToolMultiple Inheritance: Wrapper function.
SalDDE.Post
SalDDE.Send
SalDDE.SendAll
Vis.WinIsWindow
Vis.WinMove
Vis.WinRemoveProp
Vis.WinSetFlags
Vis.WinSetProp
Vis.WinSetStyle
Vis.MenuGetSystemHandle
Vis.WinEnumProps
Vis.WinGetFlags
Vis.WinGetHandle
VisCalendar.FromHandle
VisCalendar.FindChild
VisCalendarDropDown.GetParent
VisColorComboBox.FromHandle
VisColorListBox.FromHandle
VisColorPalette.FromHandle
VisColorPaletteDropDown.FromHandle
VisComboBoxBase.DragDrop
VisDesktopListBox.FromHandle
VisDirListBox.FromHandle
VisDirTreeListBox.FromHandle
VisDriveListBox.FromHandle
VisFileListBox.FromHandle
VisFontComboBox.FromHandle
VisFontListBox.FromHandle
VisFontNameComboBox.FromHandle
VisFontNameListBox.FromHandle
VisListBoxBase.DragDrop
VisListBoxExtension.FromHandle
VisListView.FindChild
VisListViewDropDown.FromHandle
VisMeter.FromHandle
VisOutlineComboBox.FromHandle
VisOutlineComboBox.DragDrop
VisOutlineListBox.GetLabel
VisPictureComboBox.FromHandle
VisPictureListBox.FromHandle
VisRadioListBox.FromHandle
VisRichEdit.FromHandle
VisRichEdit.FindChild
VisSpinField.GetParent
VisSplitter.FromHandle
VisSplitterWindow.FromHandle
XSal.SplitSetFrameChild
XSal.SplitGetFrameChild
XSalFlatButton.FromHandle
XSalHSplitter.FromHandle
XSalHSplitter.GetTopFrame
XSalSeparator.FromHandle
XSalSplitter.FromHandle
XSalToolbox.FromHandle
XSalVSplitter.FromHandle
XSalVSplitter.GetLeftFrame