Private Sub SendAllToWord_Click()
Dim strCurrentPath As String
strCurrentPath = Application.CurrentProject.Path & "\"
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU8", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 8.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU8", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 8.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU10", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 10.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU10", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 10.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU12", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 12.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU12", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 12.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU14", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 14.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU14", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 14.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU16", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 16.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU16", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 16.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GU18", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G U 18.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BU18", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B U 18.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_GOpen", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-G Open.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BOpen", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-B Open.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BestPrimary", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-Best Primary.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_SpecialPrimaryU14", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-Special Primary U 14.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BestSecondary", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-Best Secondary.rtf", False
DoCmd.OutputTo acOutputReport, "RankAndMedalStandings_BestPostSecondary", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Rank And Medal Standings-Best Post Secondary.rtf", False
End Sub