As previously mentioned, I'm working on an IDE Wizard to create a new DMVC Framework app. I'm almost there -- but at the end, I get the dialog below.


As previously mentioned, I'm working on an IDE Wizard to create a new DMVC Framework app. I'm almost there -- but at the end, I get the dialog below.

In an attempt to set the framework type, I've added:

Config := (Project.ProjectOptions as IOTAProjectOptionsConfigurations).BaseConfiguration;
Config.SetValue(sFramework, 'VCL');


but that doesn't help.

I also tried:

Config.SetValue('FrameworkType', 'VCL');

But that hasn't worked either.

I also have this in my webmodule:

{%CLASSGROUP 'Vcl.Controls.TControl'}

That doesn't seem to help either.

I note, too, that FrameworkType is read only in the OTA.....

Any idea how to set the affinity for a webmodule in a Wizard?

Comments