Database Form Events

The Events tab page, allows you to assign a macro to certain events which occur in a database form.

ይህን ትእዛዝ ለ መፈጸም...

Open context menu of a selected form element - choose Form Properties - Events tab.

Open Form Design toolbar, click Form Properties icon - Events tab.


ሁኔታ ለማገናኘት ከ ማክሮስ ጋር: መጀመሪያ ይጻፉ ማክሮስ ሁሉንም የሚፈጸሙ ትእዛዞች የያዘ ሁኔታው በሚሆን ጊዜ: እና ከዛ ይህን ማክሮስ ይመድቡ ለ እያንዳንዱ ሁኔታ በ መጫን የ ... ቁልፍ ተመሳሳይ ሁኔታ በ ማክሮስ መመደቢያ ንግግር ይከፈታል: እርስዎ ማክሮስ መምረጥ የሚችሉበት

የሚቀጥሉት ተግባሮች እያንዳንዱን ማዋቀር ይቻላል: ይህም ማለት እርስዎ የ ራስዎትን ንግግር መጠቀም ይችላሉ ተግባር ለ መግለጽ:

  1. የ ስህተት መልእክት ማሳያ

  2. የ ማጥፊያ ሂደት ማረጋገጫ (ለ ዳታ መመዝገቢያ)

  3. ደንቦች መጠየቂያ

  4. ማስገቢያ መመርመሪያ የ ዳታ መዝገብ በሚያስቀምጡ ጊዜ

ለምሳሌ: እርስዎ ማዘዝ ይችላሉ የ "ማጥፊያ ማረጋገጫ" ጥያቄ እንደ "በ እርግጥ ላጥፋው ደንበኛ xyz?" የ ዳታ መዝገብ በሚያጠፉ ጊዜ

note

The events that are shown in the Events dialog cannot be edited directly. You can remove an event from the list by pressing the Del key.


የሚቀጥለው ዝርዝር እና ይገልጻል ሁሉንም ሁኔታዎች በ ፎርም ውስጥ ከ ማክሮስ ጋር የሚገናኙ:

ለውጦች ከ ተመዘገቡ በኋላ

The After record change event occurs directly after the current record pointer has been changed.

ለውጦችን ከ መመዝገብ በፊት

The Before record change event occurs before the current record pointer - SQL cursor - is changed. Return True when moving is allowed, otherwise False.

ማጥፋቱን ያረጋግጡ

The Confirm deletion event occurs as soon as data has been deleted from the form. Return True to allow row deletion, False otherwise. For example, the linked macro can request confirmation in a dialog.

ስህተት ተፈጥሯል

The Error occurred event is activated if an error occurs when accessing the data source. This applies to forms, list boxes and combo boxes.

በሚወርድበት ጊዜ

The When unloading event occurs directly after the form has been unloaded; that is, separated from its data source.

በሚጫን ጊዜ

The When loading event occurs directly after the form has been loaded.

እንደ ገና በ ሚጫን ጊዜ

The When reloading event occurs directly after the form has been reloaded. The data content has already been refreshed.

እንደገና ከመጫኑ በፊት

The Before reloading event occurs before the form is reloaded. The data content has not yet been refreshed.

ከ መሻሻሉ በፊት

The Before update event occurs before the control content changed by the user is written into the data source. The linked macro can, for example, prevent this action by returning FALSE.

ከ ተሻሻለ በኋላ

The After update event occurs after the control content changed by the user has been written into the data source.

እንደ ነበር ከ መመለሱ በፊት

The Prior to reset event occurs before a form is reset. Returning True approves the reset, returning False cancels the operation.

ፎርም እንደ ነበር የሚመለሰው ከሚከተሉት ሁኔታዎች አንዱ ሲሟላ ነው:

  1. ተጠቃሚው ተጭኗል የ (HTML) ቁልፍ የ ተገለጸ እንደ ነበር መመለሻ ቁልፍ

  2. አዲስ እና ባዶ መግለጫ ይፈጠራል ከ ዳታ ምንጭ ጋር ከ ተገናኘው ፎርም ውስጥ: ለምሳሌ: በ መጨረሻው እግለጫ ውስጥ: የሚቀጥለው መግለጫ ቁልፍ ተጭነው ይሆናል

እንደ ነበር ከ ተመለሰ በኋላ

The After resetting event occurs after a form has been reset.

ከ መውረዱ በፊት

The Before unloading event occurs before the form is unloaded; that is, separated from its data source.

ከ መዝገብ ተግባር በኋላ

The After record action event occurs directly after the current record has been changed.

ከ መዝገብ ተግባር በፊት

The Before record action event occurs before the current record or record set are changed. Return True when changing is allowed, otherwise False. For example, the linked macro can request confirmation in a dialog.

ከማስገባትዎ በፊት

The Before submitting event occurs before the form data is sent. Returning True approves the submission, False stops it.

ደንቦች መሙያ

The Fill parameters event occurs when the form to be loaded has parameters that must be filled out. For example, the data source of the form can be the following SQL command:

SELECT * FROM address WHERE name=:name

Here :name is a parameter that must be filled out when loading. The parameter is automatically filled out from the parent form if possible. If the parameter cannot be filled out, this event is called and a linked macro can fill out the parameter. Return True when the execution of the parametrized statement should continue, False otherwise.

Vetoable events

tip

Macros can interrupt event execution when they return a boolean value: True allows the execution of the event to continue and False stops the event execution.


The following events are interruptable by returning False:

Please support us!