Search results

  1. J

    Omitting fields from a string

    I currently use the following code on a button to publish a number of fields into a single textbox and then copy this text to the clipboard Me.txtExportText = vbCrLf _ & Me![Combo55] _ & vbCrLf & Me! [List33_Label] & ": " & Me! [List33] _...
  2. J

    using sendkeys in notepad?

    I currently have a report that is produced into a new notepad file, which i then have to manually Select all then copy. I was trying to use sendkeys to automatically transfer the report to the clipboard. but im strugling with the code. The comand to open the reprt is as follows: DoCmd.OutputTo...
  3. J

    copying report data from notepad to clipboard.

    I currently use the following comand to produce a report from an imput form. this report is opened in a new text file in note pad. I use the following comand: DoCmd.OutputTo acOutputReport, "REPORT NAME", acFormatTXT, "Doc1.txt", True 'open in Notepad Is there anyway, when this data gets...
  4. J

    Copying one data field to another.

    Hi, i am having problems copying one data field from one form to another. I would like users to type in their user number in the switchboard and then this number to prepopulate the other sub forms. i have enclosed and example, any help would be greatly apreciated. thanks, Jon
  5. J

    Exporting Report to Clipboard

    Hi, I have a data entry form in access used to create a suitable format for copying into an external system. Currently, i have a button which publishes the report in a new wordpad file, which at the moment,i cut and paste manually into the external system. I was wondering if it was possible to...
Back
Top Bottom