Consultor Eletrônico



Kbase 18882: START-SEARCH event and V9 SmartDataBrowser
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   03/06/1999
START-SEARCH event and V9 SmartDataBrowser

DRAFT COPY - Currently under review and edit.

INTRODUCTION:
=============
This knowledgebase entry describes how to use START-SEARCH event
with V9 SmartDataBrowser.


WHY YOU NEED TO KNOW THIS:
===========================
If you want the same behaviour as in version 8 use RUN enableFields
before turning off the READ-ONLY attribute.


PROCEDURAL APPROACH:
====================
In SDBrowser create (use override) a new initializeObject procedure:

DEFINE VARIABLE vhCol AS HANDLE NO-UNDO.

RUN SUPER.

RUN enableFields.

ASSIGN vhCol = br_table:FIRST-COLUMN IN FRAME {&FRAME-NAME}.
ASSIGN vhCol:READ-ONLY = YES.
ASSIGN vhCol = vhCol:NEXT-COLUMN.
ASSIGN vhCol:READ-ONLY = YES.

ONLINE PROCEDURES OR UTILITIES:
===============================


REFERENCES TO WRITTEN DOCUMENTATION:
====================================


VZA (03-Jun-1999)