Yes, SELECT DISTINCT (in Query1) should eliminate the duplicates.
Code:
SELECT DISTINCT qryDelovodnikForumAll.[Year Searching], qryDelovodnikForumAll.[Doc number], qryDelovodnikForumAll.Transfer, qryDelovodnikForumAll.Subnumber, qryDelovodnikForumAll.DateofReceivng
FROM qryDelovodnikForumAll INNER JOIN [DelovodnikForum Query1] ON (qryDelovodnikForumAll.[Year Searching] = [DelovodnikForum Query1].[Year Searching]) AND (qryDelovodnikForumAll.[Doc number] = [DelovodnikForum Query1].[Doc number])
ORDER BY qryDelovodnikForumAll.[Doc number], qryDelovodnikForumAll.Subnumber;
Cheers,