 | dATAcON has Very simple operational behavior. just place the control
on the form and write one line in form load event e.g
Private Sub Form_Load()
Set AdvBar1.RecSet = DataEnv.rsAccountHolder
End Sub
|
 | dATAcON interacts with all the objects located on the form. Initially all objects will become Disable. In ADD or EDIT mode all
objects will become Enabled.
|
 | If you want any object to remain always Disabled, just place "A" in that object's TAG property.
Following Tags can be used in tag property.
 | A used to keep control ALWAYS DISABLED |
 | O used to keep control Always ENABLED. |
 | N used to keep control Disabled in EDIT mode. |
 | F Used to Make control focused on Add or Edit.
|
|
 | Multiple Tags can be used in the same time for one object e.g.
Tag can be equal to "FN". so that, object will get the
focus on AddNew and will remain disabled in edit mode. |