I currently have the following code:
DoCmd.SendObject acReport, "Report", "SnapshotFormat(*.snp)", "[Forms]![Menu]!", "", "", "Call Outs", "", False, ""
My problem is that instead of checking the email text box found on the menu form it simply puts the "[forms]![menu]![email]" as the address in outlook.
Any ideas how I could get it to take the value of the text box (which is an actual e-mail address) instead? I'm a VB n00b.
DoCmd.SendObject acReport, "Report", "SnapshotFormat(*.snp)", "[Forms]![Menu]!", "", "", "Call Outs", "", False, ""
My problem is that instead of checking the email text box found on the menu form it simply puts the "[forms]![menu]![email]" as the address in outlook.
Any ideas how I could get it to take the value of the text box (which is an actual e-mail address) instead? I'm a VB n00b.