If I reformat your code just a bit, to get:
Code:
SELECT
APVENDOR1.VNVENDOR, APVENDOR1.VNVENNAME
, APVENADR1.VAADDRES1, APVENADR1.VACITY
, APVENADR1.VASTATE
FROM LAWMOD8/APVENADR1
JOIN LAWMOD8/APVENDOR1
ON VAVENDOR=VNVENDOR
I think the logical (syntax) grouping becomes more obvious. You need to repeat the bold section for new tables as you add them to the join, listing the table and the condtion that completes the JOIN operation.
-PatP