I know there are other ways to refer to a form, but I'm just curious about this one: if you have a form with spaces in its name, how do you refer to it using the following syntax:
Of course you could write,
but I don't like that format. :)
CB55
Code:
Form_Form Name.OLE.SourceDoc = Me![Path]
Code:
Forms("Form Name").OLE.SourceDOC = Me![Path]
CB55
Comment