Error Correction:
On Form frmBugReporter
Open this form in design view and right click the Command button next to the Combo"Project Versions:" then view the onClick event
Replace the line below:
DoCmd.OpenForm "frmVersions"
With the code below:
DoCmd.OpenForm "frmVersions", acNormal, , , , acDialog
Me.Txt_VersionID.Requery
This will update the combo whenever a project version is added