Walt,
Yes, the best way to accomplish this functionality is to use VBA.
Create a procedure that opens a recordset of Table 1 and another of Table 2.
Start looping through each record in Table 1 until you reach the end of file(EOF). While processing each record check Field5 to determine the...
tbaguio,
The only thing I know that can to help is that when you are creating the email, instead of using ex.
mailItem.Body = "My Text"
use
mailItem.HTMLBody = "<B>My Text</B>"
I haven't tried it but the method is there and there may even be a mailItem.rtfBody as well...
chsu,
After looking at your code quickly the only question that I have is did you try using a Do While Loop instead of Do Until.
If you change your loop to:
Do While Not rsStruc.EOF
You may get the results you want.
mfd777,
Is the memo field a bound field on the second form? If it is this is causing the problem. The second form should probably be completely unbound and Form_Open and Form_Close code should be written to populate the memo field and save any updated results back to the recordset on the parent...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.