I have a button in MS access to export an OLE word document.
Private Sub Command25_Click()
Set OLEobj = Me.POLICY_OLE
OLEobj.SaveAs Me.TRANSACTION_TYPE.Value & Me.TRANSACTION_NUMBER.Value & ".doc"
Set OLEobj = Nothing
End Sub
This is working fine but I would like to define the file path say
C:\Me.TRANSACTION_TYPE.Value & Me.TRANSACTION_NUMBER.Value & ".doc"