Skip to content

Instantly share code, notes, and snippets.

@JTheiller
Last active July 10, 2022 14:19
Show Gist options
  • Save JTheiller/164a239619c587f6cbf9fbe5e3914c54 to your computer and use it in GitHub Desktop.
Save JTheiller/164a239619c587f6cbf9fbe5e3914c54 to your computer and use it in GitHub Desktop.
Fix TFrame error No frames are available to insert
//Faulty current state example: No Tag "DesignClass"
<DCCReference Include="U_NewFrame\U_NewFrame.pas">
<Form>NewFrame</Form>
</DCCReference>
//Example with add tag correction
<DCCReference Include="U_NewFrame\U_NewFrame.pas">
<Form>NewFrame</Form>
<FormType>dfm</FormType>
<DesignClass>TFrame</DesignClass>
</DCCReference>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment