Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6

How do we use the Form_End procedure



When you want your code to run after the saving of form data
you use the procedure Form_End.
The code is running after we add the records into the database.
If you want your code to run before adding data into the database,
you use Form_BeforeClose.
The example below shows the basic commands.

lib

proc Form_End( uvalue )
 
      { uvalue = the unique field‘s value of the record displayed on the form}
      write your code (code for adding, editing, or deleting a record)
     â€¦â€¦.
     â€¦â€¦.
     â€¦â€¦.
     â€¦â€¦.

end