Datasheet

RAIS 3.0 Programmer’s Guide – Part I : Advanced Customization
34
Image Index
If this is the first menu entry for use with custom forms, the RAIS Creator must be enhanced
to cope with custom forms. Locate the function ShowTab(n As Long) in the module section
of the form [Input]. Locate the last select statement in that function and replace the code
section
Case 5:
SecureSetSubForm [ChildForm], "Selection Help"
End Select
by this code section
Case 5:
SecureSetSubForm [ChildForm], "Selection Help"
Case 1000:
SecureSetSubForm [ChildForm], [tab settings].column(17, n)
End Select
Locate the VB statement directly after End Select. It looks like:
if [ChildForm].SourceObject <> “” Then
Replace it by the following statement:
if [ChildForm].SourceObject <> “” And [Tab Settings].column(4,n) <> 1000 Then
Locate the function Form_Unload(Cancel as integer). The first line looks like:
if [ChildForm].SourceObject <> “” Then
Replace it by
if [ChildForm].SourceObject <> “”And [Tab Settings].column(4,0) <> 1000 Then
Result