So it it possible to copy the complete form as text into clip board to use can then past into another system?
Private Sub cmd_CopyClipboard_Click()
Me!textbox1.SetFocus
Me!textbox2.SetFocus
Me!textbox3.SetFocus
Me!textbox4.SetFocus
DoCmd.RunCommand acCmdCopy
End Sub
But how wold i also include the text box label
Private Sub cmd_CopyClipboard_Click()
Me!textbox1.SetFocus
Me!textbox2.SetFocus
Me!textbox3.SetFocus
Me!textbox4.SetFocus
DoCmd.RunCommand acCmdCopy
End Sub
But how wold i also include the text box label
