Recent content by Docko

  1. D

    Creating an appointment in outlook shared calendar using an access form

    Morning Darbid, I hope you are well. I've tried what you have suggested and now i get Run-time error '91': Object variable or with block variable not set It highlights this line "Set objNS = objApp.GetNamespace("MAPI")" Thanks for your help again!! Private Sub AddAppt_Click() Dim...
  2. D

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid, I've put that in as below but i now get "run-time error '2147467259 (80004005)' the operation failed" It highlights this line: Set objFolder = objNS.GetSharedDefaultFolder(objRecip, olFolderCalendar) Private Sub AddAppt_Click() Dim objNS As outlook.NameSpace Dim objFolder As...
  3. D

    Creating an appointment in outlook shared calendar using an access form

    Could you show me an example i dont quite get it! Thank you
  4. D

    Creating an appointment in outlook shared calendar using an access form

    I get run-time error '438' object doesnt support this object or method This is from the line strName = Me!Assigned_to.Value
  5. D

    Creating an appointment in outlook shared calendar using an access form

    I've done that but the same message keeps appearing! I've set the delegate to me and permissions to editor :confused:
  6. D

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid, I think the code is all correct now. Now my problem is the message "no access to the folder meaning it is not shared" keeps coming up. I have set the user as a delegate and given editor permissions in the calendar. Do you know if their is anything else i need to do? Thank you...
  7. D

    Creating an appointment in outlook shared calendar using an access form

    Ok so this is what i have now but an "error 424, object required" message comes up. Do you know what this means? Private Sub AddAppt_Click() On Error GoTo AddAppt_Err ' Save record first to be sure required fields are filled. DoCmd.RunCommand acCmdSaveRecord...
  8. D

    Creating an appointment in outlook shared calendar using an access form

    This is what i have!! Private Sub AddAppt_Click() On Error GoTo AddAppt_Err ' Save record first to be sure required fields are filled. DoCmd.RunCommand acCmdSaveRecord ' Exit the procedure if appointment has been added to Outlook. If...
  9. D

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid, Thanks again. Because i am a novice i am struggling to get it to work. Would it be possible for you to post what the final program should look like? Thanks agian for your help, your a star :)
  10. D

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid, Thanks again for your input. Another question :o Is their anyway i can change the lines below so that it will not go to a set person but will read the details from a field list on my form? So if i was to select between person a,b,c,d or e and then click send to outlook it would...
  11. D

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid, Thank you for taking the time to respond it is appreciated. I am trying to create an appointment in another persons calendar but the tricky part is i want to choose between 5 people so it is not just the single person. e.g if an appointment comes in for person 'a' i select them...
  12. D

    Creating an appointment in outlook shared calendar using an access form

    I have spent hours going through forums looking for an answer to this and cant seem to find one :( I am looking at creating a form which allows you to select a person to create an appointment in their calendar in outlook. So far i have found a great programme which takes me step by step...
Back
Top Bottom