Previous Topic

Next Topic

Inhoudsopgave

Book Index

InitializeGridFields Event

Event Event InitializeGridFields: String

Description

Specifies the name of the procedure which is evaluated during instantiation of the Edit Form.

In this procedure you can initialize gridfields (change displaylabels, format and read only properties).

Code Snippet

Dim frmEditForm

Set frmEditForm = IsahObjects.Get("EditFormObject")

frmEditForm.InitializeGridFields = "InitializeGridFields"

Sub InitializeGridFields(Sender)

'Change display labels and set fields to read only

'Change the display format

'Set the width of several columns

'Hide columns

frmEditForm.UpdateGUI = True

End Sub