![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi,
I need help! How do i create a Appointment out of an Custom Appointment form. Details: i have a Custom Appointment Form with Two Fields! One named Date an one named Begin. I also have a Button to Create a Appointment. Problem: Everytime i create an Appointment Outlook creates an normal Appointment. I need to have the same Custom Appointment. Code on the Create Button: Sub CreateAppointment_click() 'msgbox Item.GetInspector.ModifiedFormPages.Item("Bericht" ).Controls("NächsterTermin").Text & " " & Item.GetInspector.ModifiedFormPages.Item("Bericht" ).Controls("TStart").Text Set NewAppointmentItem = Application.CreateItem(1) NewAppointmentItem.MessageClass = "IPM.Appointment.Vertriebstermin" NewAppointmentItem.Start = Item.GetInspector.ModifiedFormPages.Item("Bericht" ).Controls("NächsterTermin").Text & " " & Item.GetInspector.ModifiedFormPages.Item("Bericht" ).Controls("TStart").Text NewAppointmentItem.Duration = 60 'NewAppointmentItem.Subject = "This is a test appointment" 'NewAppointmentItem.Location = "Timbuktu" 'NewAppointmentItem.Body = "This is just a test appointment - nothing to be concerned about!" NewAppointmentItem.Display() End Sub Thx for your time! Regards Marc |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating a custom appointment form | Theresa Smallwood | Outlook and VBA | 11 | May 15th 06 03:47 PM |
Creating a custom appointment form | Sue Mosher [MVP-Outlook] | Outlook - Using Forms | 10 | May 15th 06 03:47 PM |
Create a custom appointment form | Theresa Smallwood | Outlook - Using Forms | 1 | April 27th 06 09:14 PM |
Emailing a contact vCard with custom form loses all custom info | Kim | Outlook - Using Contacts | 7 | April 27th 06 12:21 AM |
Cannot programmatically open custom message in custom form | ms | Outlook - Using Forms | 1 | January 20th 06 03:01 PM |