Yes, I accidentally cut off a part of the declaration
Eva
-----Original Message-----
From: Kim, Cardyin [mailto:CKim@s...]
Sent: Tuesday, June 19, 2001 2:36 PM
To: professional vb
Subject: [pro_vb] RE: Problem with MAPIMessages control
Eva,
Are you sure you don't mean:
Public Type udtAttachmentType
FullPath As String
Name As String
Type As String
End Type
Public Sub sb_SendMail(ByRef a_MailRecepients() As String, _
ByRef a_MessageText As String, _
ByRef a_Title As String, _
ByRef a_Attachments() As udtAttachmentType)
Cardyin
--------------------------------------
Cardyin Kim
C/S & Web Development Analyst
Information Services
San Antonio Community Hospital
ckim@s... (xxx)xxx-xxxx
--------------------------------------
-----Original Message-----
From: Zadoyen, Eva [mailto:EZadoyen@s...]
Sent: Tuesday, June 19, 2001 11:16 AM
To: professional vb
Subject: [pro_vb] Problem with MAPIMessages control
Sorry, declaration for this sub should be different, there is a User
def.type for attachment
Public Type udtAttachmentType
FullPath As String
Name As String
Type As String
End Type
Public Sub sb_SendMail(ByRef a_MailRecepients() As String, _
ByRef a_MessageText As String, _
ByRef a_Title As String, _
ByRef a_Attachments As udtAttachment)
Eva