I've found the answer to my real issue.
The issue is, the ToolStrip buttons doesn't cause 'VALIDATION'.
Resolution:
By invoking 'this.Validate()' (this refers the form) from ToolStrip's clicked event forces the validation for all the controls. Thus the data can be handled upon 'OnValidating' event.
Thx. & Good luck everybody.