Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » VB   (RSS)

HOWTO: VB/CDO 1.21 - Cancel a Recurring Meeting using a single Recurrance

' This code finds an meeting occurance and uses it to cancel the entire meeting series and ' have "Cancelled:" in front of the subject lines on the update messages sent to the recipient(s). ' To use: ' Create a recurring meeting inside the date/time range

HOWTO: VB - Reading Delegates WebDAV Sample

Private Sub Command1_Click() '===================================================== 'DoXML takes the href to a document 'and returns the MAPI PR_ENTRYID property expressed in 'a hexadecimal string format such as is used by CDO 1.21 'Function DoXML(strHref)

Howto: VB - An example to create a public folder with storage limit settings.

In this example, the following properties are set during the folder creation. outlookfolderclass contentclass The warning limit in KB Prohibit Post at (KB). Maximum item Size (KB) addressbookdisplayname isreadonly ishidden When reading and setting certain

HOWTO: Write a file using VBScript

'------------------------------------------------------------------------------- ' WriteFileText - Used to write an item to a file in a folder. ' Parameters: ' sFile - The file to read ' ' Returns: ' A string containing the content of the file. '-------------------------------------------------------------------------------

Howto: VBScript - Read a file

'----------------------------------------------------------------------------------- ' ReadFileText - Used to read a file in a folder. ' Parameters: ' sFile - The file to read ' ' Returns: ' A string containing the content of the file. '-----------------------------------------------------------------------------------

HOWTO: Send Email With Attachment Using VB and WebDAV

To send an email with WebDAV, you will you will need to create/recreate the item with a WEBDAV PUT using the MIME of the message. It gets tricky when working with attachments. To get around the complexity of sending an email with an attachment, you may

Howto: WebDAV X-MS-ENUMATTS using VBScript to enumerate attachments

' This example shows how to enumerate attachments on a message. X-MS-ENUMATTS will ' return phantom urls to attachments on the message. These URLs can be used with GET ' and DELETE (starting with Exchange 2003 SP1). ' For listing and reading an attachment,

Howto: WebDAV COPY using VBScript

' This example shows how to do a COPY of a message to a folder. 'NOTE: ' • Copying or Moving items across stores is not supported (that includes maiboxes) ' • You will get a 404 (Resource Not Found) if the source item does not exist. ' • A status of 204

Howto: WebDAV MOVE using VBScript

' This example shows how to do a MOVE of a message to a folder. 'NOTE: ' • Copying or Moving items across stores is not supported (that includes maiboxes) ' • You will get a 404 (Resource Not Found) if the source item does not exist. ' • A status of 204

Howto: WebDAV PUT using VBScript

' This example shows how to do a PUT of a message to a folder. What is being written with a PUT would ' be the MIME of a message and such MIME can also contain the MIME of the message. PUT works against ' messaging items directly such as mail messages.

Howto: WebDAV GET using VBScript

'The example below demonstrates how to do a WebDAV GET. ' GET works against items and attachments. When used against an item, it give you ' the mime stream of both the message and attachment. You cannot get the mime of only the message ' if there are

Howto: WebDAV DELETE using VBScript

'The example below demonstrates how to do a WebDAV PROPPATCH. ' DELETE works against folders and items. This sample shows how to delete a single message. ' NOTE: In versions of Exchange prior to 2003 SP1, you cannot delete an attachment with WebDAV. dim

Howto: WebDAV PROPFIND using VBScript

'The example below demonstrates how to do a WebDAV PROPFIND. Note: PROPFINDs are non-conditional. Use a SEARCH for reading properties conditionally. dim sHREF dim sUserName dim sPassword dim sResponse Dim HttpWebRequest dim sReq ' Body Proppatch statement

Howto: WebDAV SEARCH with range headers using VBScript

'The example below demonstrates how to do a WebDAV SEARCH with range headers. Public Function GetItemListXML(sHREF, sUserName, sPassword, sDepth) Dim sQuery ' As String Dim sText 'As String sQuery = "<?xml version='1.0'?>" & _ "<g:searchrequest

Howto: WebDAV SEARCH using VBScript

'The example below demonstrates how to do a WebDAV SEARCH dim strExchangeURL dim strApptStartDate dim strUser dim strPassword strUser = "Administrator" strPassword = "test" strExchangeURL = " http://myexserver/exchange/Administrator/Calendar/ " strApptStartDate
More Posts Next page »
 
Page view tracker