Recent content by jco23

  1. J

    Embed query results into an email body

    sorry about that, i'll do that next time.
  2. J

    Embed query results into an email body

    I got it to work by using delete and append queries to a local table, and then bringing in that table: Private Sub Command57_Click() Dim db As DAO.Database Dim rs As DAO.Recordset Dim sHTML As String Dim strQuery As String Dim msgbody As String DoCmd.SetWarnings...
  3. J

    Embed query results into an email body

    i also tried using the results from a table, and when the table gets created, it looks fine. however, when i attempt to embed the table into an e-mail, I get the same problem. thus, I suspect something is awry with one of these two lines: Set f = fs.OpenTextFile("QueryResults.html", ForReading)...
  4. J

    Embed query results into an email body

    sorry, I thought the output would be the same as opening the HTML as a text.... how do I that then?
  5. J

    Embed query results into an email body

    when add this line: DoCmd.OutputTo acOutputQuery, "MyQuery", acFormatRTF, "C:\Users\" & Adent & "\Desktop\QueryResults.rtf", the file saved looks fine. basically, the same as above but without the file path
  6. J

    Embed query results into an email body

    i appear to be a roadblock here, where my VBA code is producing some weird results. essentially, everything works perfectly fine except that the first field in the row of the query results in the e-mail contains additional text. that text has the ending string of the path where the app resides...
  7. J

    Row Height of subform reverts back

    this appears to have worked for me. I'm going to have others test it today. thanks again for the suggestion!
  8. J

    Row Height of subform reverts back

    i appreciate the effort, but my company prohibits us from uploading any content.
  9. J

    Row Height of subform reverts back

    i'll see if that is feasible. thanks for the quick responses and extended effort!
  10. J

    Row Height of subform reverts back

    it's possible, but I don't recall. still doesn't make sense why it would apply to one form and not another.
  11. J

    Row Height of subform reverts back

    the only "save" codes pertain to the records, not the forms. but just closing the form does not contain any events.
  12. J

    Row Height of subform reverts back

    i am a developer for a database app that gets used by 500+ users. users install the frontend on their desktop and use that exclusively. once I make updates, the app then automatically re-installs when they open it. within this app, I have a form with two subforms (both are shown as datasheet...
  13. J

    Lookup and assign value based upon text within alpha range

    ideally, that would work, but users have gotten in the habit of using short names while others are using long names (e.g. IBM vs. I.B.M vs. International Business Machines vs. Int' Bus. Machines). we're in the process of cleaning some of that up, but this method works. this group deals with...
  14. J

    Lookup and assign value based upon text within alpha range

    good suggestions - i'll make sure to do that. thank you!
  15. J

    Lookup and assign value based upon text within alpha range

    this is helpful, but I already got something similar in another portion of my app. thanks!
Back
Top Bottom