A family of Microsoft relational database management systems designed for ease of use.
You are missing a MeetingTopics table, with the following foreign key columns:
MeetingID
Speaker
Topic
The primary key is a composite o all three columns.
This table would reference the composite primary keys of the MeetingSpeaker and SpeakerTopics tables. The table would model the many-to-many relationship type between MeetingSpeaker and SpeakerTopics. These tables themselves model relationship types, of course, but a relationship type is really just a special king of entity type, so can be a party to other relationship types in the same way as a table modelling any entity type.
The interface for this model would be a parent form based on Article, within which would be a subform based on MeetingsArticle. This could be in continuous forms view. You cannot have a subform within a form in continuous forms view. You can use correlated subforms, however. In this case these would be used for inserting data into the MeetingSpeaker and MeetingTopics tables.
Subforms are correlated by including a parameter in the referencing subform which references the key of the referenced subform's table. The referencing subform is requeried in the Current event procedure of the referenced subform. For examples of the use of correlated subforms in this way take a look at StudentLog.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have trouble downloading a specific file, clicking on the 'Download' button at the top of the page while no files are selected should download a zip file of all files in the folder, from which you should then be able to unpack the relevant file.
To insert data into the LionsMeetings table you could use the NotInList event procedure of a combo box bound to the MeetingID column in the MeetingsArticle subform. This would open a dialogue form bound to the LionsMeetings table at an empty new record. The dialogue form would include a subform based on the MeetingSpeaker table. For an example see NotInList.zip in the OneDrive folder to which I gave you a link above.
Similarly data would be inserted into the Speakers and Topics tables via the NotInList event procedures of combo boxes in the MeetingTopics subform. The dialogue forms opened by these event procedures could include subforms based on the MeetingSpeaker and SpeakerTopics tables.