Search results

  1. R

    msg Microsoft Access has stopped working

    :(I am working with Access 2010 and all of a sudden I get this error message when I click on an Event procedure to edit the code "Microsoft Access has stopped working." I have the protection code turned on with a password. Since I cannot turn the password off and cannot get the code, I can't...
  2. R

    Run a combo box from another form problem

    I am in a subform and trying to put the selected record's workorderID into another form (frmworkorder) and then populate all the the related text boxes in the frmworkorder. The workorderID is put into a combo box, this works, but the combo box after update "event procedure" does not run. I can...
  3. R

    Open Paint when clicking on bound object frame?

    How can I open Paint using vba or macros? I want to click on the bound object frame and have Paint open up so the user can make a drawing. I also want to double click a drawing in the bound object frame and have Paint open up in the edit mode. Thanks for any help. Richard Iam still looking...
  4. R

    Missing reference OutlookChangedNotifierAddin 1.0 type Library

    I have created Outlooks Tasks and Appointments in Access 2007. It worked great. Then I had to replace the computer with a new one and some of the Outlook dll libraries were missing. Old computer was running Window XP & Access 2007 New computer running Windows 7 pro & Access 2007 My customers...
  5. R

    Create Word document from Access?

    Thanks Chris I will be working on this Monday or tuesday. Have a great week. Richard
  6. R

    Create Word document from Access?

    Chris, I am having a problem with selecting then center, underline and hanging indent. I look and tried a lot of things with the link you provided. And :confused: because nothing is working. I have been given this code and trying to correct it so the Word document does not have to be edited...
  7. R

    Create Word document from Access?

    Well I have put this in my code in various places and I do not think I am doing it right because The paragraph does not format Distribute. WordApp.Selection.ParagraphFormat.Alignment = wdAlignParagraphDistribute I will be reading more on the link you gave me because now I have underline and...
  8. R

    Create Word document from Access?

    Thanks again, I put all this into my favorites and it will inhance my programming experience. Richard
  9. R

    Create Word document from Access?

    Thanks stopher for the help on distribute. Is there any site on the web or a book that shows all the wordapp.selections? Have a great day, Richard
  10. R

    Create Word document from Access?

    Hi everyone, I have the below code working to build a Word document from Access. It works, but I want to justify/distribute the text in the Do loop. I have not found an way to do it on the WEB or the forum. I figure that the code would be like word.App.selection.distribute = true/false. Can...
  11. R

    Outlook Contacts 2007 to Access 2007 ??

    Pulling my hair out!:confused: I am trying to inport Outlook 2007 Contact list into Access 2007 table. Running debug, the code stops at the RED text rs("olfirstname") = .FirstName. I get this error message "Invalid or unqualified reference". I find a lot of Access contacts to Outlook on the...
  12. R

    Update Outlook Appointment???

    spikepl, Played with the chr(34) some more and It works :D Thanks for helping me and now I can relax from the panic mode. Richard
  13. R

    Update Outlook Appointment???

    Im not sure what you mean. Set objAppointmentItem = objAppointment.Items.Find("[Subject]=" & Forms!frmShowAllOutlookTasks_fromPopup_1!OLSubject) where do I place chr(34)?
  14. R

    Update Outlook Appointment???

    The message I got from Immediate window is: [Subject]=It is almost done first
  15. R

    Update Outlook Appointment???

    spikepl, the print.debug just tells me that I get the OLSubject but the Set objAppointmentItem = Nothing. Still lost Richard M
  16. R

    Update Outlook Appointment???

    :mad: Pulling my hair out trying to update an appointment in Outlook. The code I am using stops running at this line. Set objAppointmentItem = objAppointment.Items.Find("[Subject]=" & Forms!frmShowAllOutlookTasks_fromPopup_1!OLSubject) this line and gives me an error code of -2147352567...
  17. R

    Need help with assigning a task in Outlook from Access

    Do you have an exchange server?
  18. R

    Need help with assigning a task in Outlook from Access

    My problem was setting a task in my Outlook not another user.
  19. R

    Need help with assigning a task in Outlook from Access

    It should, it worked in MS 2000 database running in 2007 but you have to have the correct references. Good luck. Richard
  20. R

    Need help with assigning a task in Outlook from Access

    unixkid, try this. It gets the data from the form. Code is for MS 2007 Function fncAddOutlookTask() Dim strAnsDate As String Dim strAnsTime As String Dim OutlookApp As Outlook.Application Dim OutlookTask As Outlook.TaskItem strAnsDate =...
Back
Top Bottom