Trying to copy active word document contents to a field in Access w/one button click, using late binding.
I've gotten this far, but it doesn't work. I'm not a programmer, so I can only pick my way thru and pull stuff from other code I've downloaded, so speak down to me please!
Dim objWord As Object
Dim objDoc As Object
Set objWord = GetObject(, "Word.Application")
objWord.Visible = True
Set objDoc = objWord.activedocument
objDoc.Selection.HomeKey Unit:=wdStory
objDoc.Selection.Extend
Me!TxDetails.SetFocus Paste
Thanks in advance,
Ed