The Subject is not meant to be a generic question.
Rather, it is specific as follows:
1. When I DOUBLE-click on a component (say a TEdit), automatically a Procedure skeleton is created in the editor; the procedure is given a Name; and am passed to the Editor, to complete the Procedure.
2. But the Component that was double-clicked and have VARIOUS possible Events. Yet the IDE chooses, perhaps the most likely one to 'own' the procedure, and it even names it partially to that Event.
3. So, if I don't want that Procedure to be associated with the Component, I simply remove the procedure's name from the Component Event choices. And I suppose nothing is hurt if the procedure is left in the Editor. Or, I can delete all references to this created skeleton, including the created declaration, and all this is correct? Is this true categorically?
4. Therefore, If I for instance want to relate a procedure to another of the properties of the TEdit, for example OnMouseEnter, I really can't create it by double-clicking ot the Form on the component. Is this Correct?
5. Hence, would then the right way be for me to create the Procedure declaration by hand, then make a skeleton of the procedure, and THEN go to the Object Inspector and in the Events, put the name of the Procedure that I sketch there, without even having to touch the Form being designed? Is this correct?
6. Now after this, if I were to double Click, at the Form, to the same TEdit which already has a procedure associated as I did, by hand, and I double Click the component, then what will happen is a NEW skeleton of a new procedure would be created, rather than the usual "double clicking on a component takes me to its procedure"..Then in this case this would not be true? Is this so?
Now, rather than answers to the above each on each, I am rather seeking some brief guideance on how to aproach this. For instance, should I rather not ever double click on a forms component, but rather me do everything by hand, when I want to create Procedures and associate them with components?
Sorry for the length of this, but I felt like I rather do the effort in writing in the hope it leads to short explanations by whoever (please) can briefly explain or clarify or correct what I've gathered so far.
Thanks!