At first glance it appears as I mentioned - IMO you have too many forms and tables for what you are doing. However, I'm not sure to what level as I don't know the nature of the business. Certainly only 1 table for contacts I would think, not 2. On one hand I'm wondering why you care if B is a distributor for A - especially since these relationships are not under your control and you're not likely to be notified when they change. On the other hand, your business may need to have these relationships defined somewhere. Maybe what you should have is one tblSuppliers with all company names in it (or tblCompanies if you prefer). To track if B is a distributor of A and B is a supplier to C you'll likely need junction table(s). tblSuppliers would mean 1 form for all companies as you seem to be asking for but with subforms to create the business relationships if need be.
Your first post lists the tables you want to combine, but there are 2 tables in between - tblManufacturerDistributors and tblManufacturersSuppliers (slightly different spelling on manufacturer, which might cause issues when coding) so what happens to those?
Perhaps you should provide a treatise on what the business process is that this db is going to support - that is, if you want advice on whether or not you're on the right track with design. If you've already provided that in another thread, then maybe cut and paste here or provide a link to it. If such advice is not desired, then the answer to this
Is it possible to make a relationship link between two records on the same Table?
is yes. To do that properly you'd do so in a junction table, not the main table. AFAIK, there is no way to do this in a main table without repeating all field data (e.g. company name, address, etc.) and you wouldn't do that, right? Last but not least, you have committed spreadsheet-itis on tblManufacturer and other tables by repeating like fields (address, country, for example).
You probably don't want to be told this, but I think the right thing to do is start over - perhaps while users continue with the current db. The more they ask for in terms of capability, the more difficult it will become to implement changes and you'll likely be posting here for solutions to problems that arise because of design.
The more we hear silence, the more we begin to think about our value in this universe.
Paraphrase of Professor Brian Cox.