ISEdit.BringToFront

Description

This function changes the z-order of the specified edit control relative to other controls (brings it to front).

Syntax

object.BringToFront

Part Attribute Type Description
object Required
The object always implements the ISEdit interface

Example

Bring the specified edit control to the front.

Dim aEdit

Set aEdit = Form.Controls_("edtInform")
aEdit.BringToFront  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0