Recent content by jotaen

  1. J

    Long doc word inside report

    I'm facing a problem: I have a log word document (4 pages) that I need to output in a report, but even if I choose to "Can Grow" property, it doesn't show's. Any possible solution?
  2. J

    Copy and paste on new record

    Thank you all! Sharing my solution. I discover that I can put values in variables like so: Dim field As String field = Me.FirstName DoCmd.GoToRecord , , acNewRec Me.FirstName.value = field
  3. J

    Copy and paste on new record

    And is it possible to copy only specific fields? Kind like: DoCmd.RunCommand acCmdCopy Me.FirstName DoCmd.RunCommand acCmdPasteAppend Me.FirstName
  4. J

    Copy and paste on new record

    Hi, no! I give up that because I didn't manage to implement that solution.
  5. J

    Copy and paste on new record

    Hi, Is it possible to copy fields from a form and paste on next new record?
  6. J

    Duplicate form content from two tables

    I have a form (parent form) where I make quotes for clients. The table for that form as multiple columns as follow: (Table name: "quotes for client") ID Client_ID (related to the main table where I keep client details) Quote_Date Payment_Terms Task_Conclusion_Date Notes Than I have a...
Back
Top Bottom