Jump to content

Recommended Posts

  • Administrators
Posted

 

Krystian Bigaj 

Posts: 7

Registered: 8/14/06

 

Re: In XE4 all frames are ignored for insertion  

Posted: Nov 26, 2014 11:41 PM   in response to: Bujor Cristinel in response to: Bujor Cristinel

 

I had same problem after migration from D2009 to XE5.2

You can fix it by editing .dproj and add dfm to your frames (you can find frames by searching for TFrame ).

Change:

        <DCCReference Include="x\y\z\myFrame.pas">
            <Form>frameMy</Form>
            <DesignClass>TFrame</DesignClass>
        </DCCReference>

to:

        <DCCReference Include="x\y\z\myFrame.pas">
            <Form>frameMy</Form>
            <FormType>dfm</FormType>
            <DesignClass>TFrame</DesignClass>
        </DCCReference>

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...