Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disabling the form designer in DelphiXE

Is it possible to disable the form designer in DelphiXE "on-demand/selectively" and only work with the code of a form/class where needed, in the event that controls are not installed in the IDE?

like image 980
MX4399 Avatar asked Jul 22 '11 09:07

MX4399


1 Answers

I'd say the answer is no, but the workaround that I use is to edit the DFM file and cut out the component that is not there, and paste it to the FormCreate event and instantiate it there instead. The properties are all there in the DFM, so a little editing makes it work nicely.

like image 84
mj2008 Avatar answered Oct 06 '22 00:10

mj2008