Quote:
Originally Posted by khortez
Why am I naming my Gui's anything?
|
So your GUI has an ID that you can use to manipulate/debug it in your code. Properly labeled code is also much more readable.
Labeled incorrectly you would not know which button is the close or open button:
MyForm_Button_1
MyForm_Button_2
Labeled and used correctly you have a much better idea:
MyForm_Button_Open
MyForm_Button_Close
This can be applied to many other object types or GUIs.