EmailMSACCESS
Allows you to adress and write an MS Access report directly into an email message. (saves attaching pesky rtf files making it easier for the reader. The code attached is what we use on a weekly basis and can be used as a template with your tables/queries
AI
ИИ-обзор: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Исходный код
Private Sub Command_Email_Click() Dim dbs As Database, rst As Recordset Dim strcrlist1 Dim strsql As String Dim stDocName As String Set dbs = CurrentDb Dim test, i, intspace intspace = " " strsql = "SELECT Main_data_table.Date_concurrence, " strsql = strsql & "Main_data_table.ID, " strsql = strsql & "Main_data_table.CR_number, " strsql = strsql & "Main_data_table.Resp_dept, " strsql = strsql & "Main_data_table.Resp_indiv, " strsql = strsql & "Main_data_table.Description, " strsql = strsql & "Main_data_table.Signif_level, " strsql = strsql & "Main_data_table.Eval_level " strsql = strsql & "FROM Main_data_table " strsql = strsql & "WHERE (((Main_data_table.Date_concurrence) Between #" & [Forms]![Phil is Sick or on Vacation]![datea] & "# And #" & [Forms]![Phil is Sick or on Vacation]![dateb] & "#)) " strsql = strsql & "ORDER BY Main_data_table.CR_number;" Set rst = dbs.OpenRecordset(strsql) With rst rst.MoveLast Debug.Print rst.RecordCount End With test = rst.RecordCount Me!Test1 = test strcrlist = "" With rst rst.MoveFirst For i = 1 To test strcrlist = strcrlist & Chr$(127) & !CR_number & intspace & !Signif_level & intspace & !Resp_dept & intspace & intspace & !Resp_indiv & Chr$(13) & Chr$(10) & !Description & Chr$(13) & Chr$(10) & Chr$(13) & Chr$(10) rst.MoveNext Next i strcrlist = "CR#" & intspace & "Sig Lvl" & intspace & "Resp Dept" & intspace & intspace & "Resp Indv/ Description" & Chr$(13) & Chr$(10) & strcrlist End With Me!test2 = strcrlist Dim list 'stDocName = "Condition Reports created this week auto" strnsra = "Please review the following CR listing for possible NS and RA reportable implications and return the package to me. If any items need further looking into, I have all the associated information and will gladly share any with you." strnsra = strnsra & Chr$(13) & Chr$(10) & "This review may be done electronically by responding to this email" & Chr$(13) & Chr$(10) strcrlist = strnsra & Chr$(13) & Chr$(10) & Chr$(13) & Chr$(10) & strcrlist DoCmd.SendObject , , , "Michael Johnson", "Phillip Wood", , "CRs Generated This Week-NS and RA Review", strcrlist End Sub
Оригинальные комментарии (3)
Восстановлено из Wayback Machine