An example would be the use of "XxxxID()".
Sometimes it refers to the ID Number of a particular item...
Other times it refers to the internal Handle of an item
Code: Select all
EventWindowID()
EventGadgetID()
;These return the ID
WindowID()
GadgetID()
;These return the Handle
Might I suggest something like:
Code: Select all
EventWindowID()
EventGadgetID()
;These return the ID
WindowHandle()
GadgetHandle()
;These return the Handle
[Another Request]
I wouldn't mind something like this either:
Code: Select all
WindowID(hwnd)
GadgetID(hwnd)
;Returns the ID from the Handle :)