Skip to Content
0
Former Member
Jun 27, 2009 at 04:36 AM

Compare Before_Action and BeforeAction ?

177 Views

I dont understand when use Before_Action or BeforeAction . what are they different ?

because I want to use for events as: Form, Button,EditText,....

example:

if ((pVal.ItemUID == "CbIncen") && (pVal.Before_Action == true))(pVal.EventType == SAPbouiCOM.BoEventTypes.et_GOT_FOCUS))
{..
 //event for ComboBox
..}

.if ((pVal.ItemUID == "CbIncen") && (pVal.Before_Action == false))(pVal.EventType == SAPbouiCOM.BoEventTypes.et_FORM_LOAD))
{..
 //event for ComboBox
..}..

.if ((pVal.ItemUID == "btnExit") && (pVal.EventType == SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED))
     {
       oForm = SBO_Application.Forms.Item(pVal.FormUID);
       oForm.Close();
    }..

Can You give me ebook about it ? or Example 😀 thanks, because I dont understant about it !