Search results

  1. D

    Record Appointment to Calendar on "Public Folder"

    Hi Diane, Ok, could I add an "item" using a template? with out emailing etc... ?
  2. D

    Record Appointment to Calendar on "Public Folder"

    Thank you Diane, this is now working :) but... As soon as I run the macro, it opens my form/appointment, then a pop up with "Responses to this meeting will not be tallied. If you want outlook to tally responses for you, move the meeting to the calendar folder for this account". Then you click...
  3. D

    Record Appointment to Calendar on "Public Folder"

    Hi, Once again thank you. myfolder.move newitem
  4. D

    Record Appointment to Calendar on "Public Folder"

    Hi, Now getting "Runtime error 438. Object doesn't support this property or method" ? Sub MakeItem() Set objNS = Application.GetNamespace("MAPI") Set objParentFolder = objNS.GetDefaultFolder(olPublicFoldersAllPublicFolders) Set objFolder = objParentFolder.folders("test folder") Set myFolder =...
  5. D

    Record Appointment to Calendar on "Public Folder"

    Hi, And again thank you, I'm receiving a "Runtime error 424 object required" ?
  6. D

    Record Appointment to Calendar on "Public Folder"

    Hi, Thank you for your response, greatly appreciated. I wish I could say I fully understand but I'm a little lost please help? below is what I have amended but still recording to Local Calendar. Thank you in advance. Sub MakeItem() Set newItem =...
  7. D

    Record Appointment to Calendar on "Public Folder"

    Hi All, Please if anyone can help that would be greatly appreciated. I have Office 2016 Desktop connecting to Office365. I have made a custom form and got the code from here to create a link in the Ribbon etc. It works perfectly to my personal calendar but I would like it to record to a...
  8. D

    Outlook macros to create meeting on shared calendar

    Apologies for the delay in coming back to you, please are you able to assist with how my macro should be? it just can't seem to get it... can you confirm the below ? and if you can suggest any online courses to learning VB that would be greatly appreciated! Sub MakeItem() Set CalendarFolder =...
  9. D

    Outlook macros to create meeting on shared calendar

    Thank you for all your help... slight change in plan, have since created a public folder calendar... please if you could assist in the code below, so now im wanting my macro to create the appointment on the public folder calendar... Sub MakeItem() Set CalendarFolder =...
  10. D

    Outlook macros to create meeting on shared calendar

    Hi Michael, thank you again.. so the correct code would be like the following? Sub MakeItem() Set CalendarFolder = GetSharedDefaultFolder("me@me.com, FolderType") Set newItem = Application.CreateItemFromTemplate("C:\Users\user\AppData\Roaming\Microsoft\Templates\test.oft") newItem.Display Set...
  11. D

    Outlook macros to create meeting on shared calendar

    Hi Michael thank you for your reply.. very new to this and don't fully understand vb yet but am determined to learn... will the following work ? Sub MakeItem() Set CalendarFolder = GetSharedDefaultFolder(me@me.com, FolderType) Set newItem =...
  12. D

    Outlook macros to create meeting on shared calendar

    Hi and thank you for such a quick reply, yes I have set him up as a owner on my calendar.
  13. D

    Outlook macros to create meeting on shared calendar

    Hi Guys, Thanks for having me here.. I'm very new to this all and have followed some online guides to customize a "Meeting Form" and create a "Button" on the outlook ribbon allowing me to book jobs. Myself and a work colleague each have independent email addresses on the office365 exchange...
Back
Top