XCLN: How to Add Recipients to an EFD ProjectLast reviewed: November 24, 1997Article ID: Q164331 |
The information in this article applies to:
SUMMARYThis article shows you two methods to programmatically add a recipient to a Microsoft Electronic Forms Designer Form using Microsoft Visual Basic version 4.0 for 16 bit applications. One method uses OLE messaging and the other uses Msriched.vbx.
MORE INFORMATION
Method 1This method uses OLE messaging. NOTE: For the following code to function properly, at least one recipient must be placed on the To line (by using the Form user interface)
Private Sub Command1_Click() 'Call this sub routine from the Window_Store() function. 'Towards the end of the function, just above the '"Window_Store = True" line of code Dim szRecip As String Dim objOneMsg As Object Dim objOneRecip As Object szRecip = "John Doe" Set objOneMsg = mfobj.message Set objOneRecip = objOneMsg.Recipients.Add objOneRecip.Name = szRecip objOneRecip.Type = 1 'MapiTo objOneRecip.Resolve objOneMsg.Update End Sub Method 2This method uses Msriched.vbx.
Private Sub Command1_Click() Dim szRecip As String szRecip = "John Doe" ctlTo.Text(0) = szRecip ctlTo.TextBlocks = Len(szRecip) End Sub Keywords : XCLN kbprg Version : WINDOWS:4.0,5.0;winnt:4.0,5.0;Win95:4.0,5.0 Platform : WINDOWS Issue type : kbhowto |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |