Question : Access - VBA Examples - Resources

Hi,

Does anyone have suggestions for VBA resources - I have most foundation books. What I am interested at this time are resources that will provide actual full length coding examples, so I can have them as a comparitive source.

Therefore, I have a foundation knowledge, but as I utilize VBA more, it helps to have actual examples to examine. I am open to book and Internet resources.

Thanks.

Answer : Access - VBA Examples - Resources

Assuming it is publishedDate and they are unique than something like this:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
SELECT	b.bloggerName,
	p.publishedDate, 
	p.blogText, 
	p.blogTitle
FROM	contentBlogs b
	INNER JOIN contentBlogPosts p ON b.blogID = p.blogID
	INNER JOIN (
		SELECT	blogID,
			MAX(publishedDate) LastpublishedDate
		FROM	contentBlogPosts
		GROUP BY
			blogID) p2 ON b.blogID = p2.blogID AND p.publishedDate = p2.LastpublishedDate
Random Solutions  
 
programming4us programming4us