delphi - Hide VCL Classes -


there program tools such winspy++ allow hover on handle of control/component , return class name of handle. example, if dropped tmemo on delphi form , compiled application, if used winspy++ , hovered on application (above memo), reveal class name of editor tmemo.

now, suppose dont want using such program determine components using in application, how prevent class names showing in tool, such winspy++?

i ask because dont want create clones of applications may create , release, if class names of components using discovered make task easier because know use.

simply put, how can hide class names of vcl use in delphi application external viewer tools winspy++.

winspy++ can found here: http://www.catch22.net/software/winspy

to add, know can custom derive these components change class names own, must easier way.

you override createparams , put own class name params.winclassname. default behaviour implemented in twincontrol.createparams:

with params   ...   strpcopy(winclassname, classname); 

Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -