Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: plutz
  • Content: Threads
  • Order by date
  1. plutz

    Inserting a line break in the body of an email

    I have the below code to generate an email with several different lines of text, however i can get the lines of text to start on a new line in the body of the email Dim olApp As Object Dim olMsg As Object Set olApp = CreateObject("Outlook.Application") Set olMsg =...
  2. plutz

    Protection macro form viewing or editing

    Is there a method to prevent a user from viewing or editing a macro in excel?
  3. plutz

    OLE objects in a report

    I have a DBase that contains several pdf forms that are stored as OLE objects. I want to add these forms to a report so that the user can open the pdf file and print it out.
  4. plutz

    Powerpoint to Access

    I'm using the the following code to transfer from Access to powerpoint. How can I modify the code to close powerpoint and open access? Private Sub SomeButtonName_Click() Dim oApp As Object Set oApp = CreateObject("Powerpoint.Application") oApp.Visible = True...
  5. plutz

    importing outlook tasks into access

    I am try to use code to import user-defined fields from outlook task to an access DBase. I have seen the Microsoft Knowledge Base Article "How to Programmatically Export Items to Microsoft Access". However this article is for contact information. Can you help me modifiy this code to...
  6. plutz

    Exporting Outlook Task Items to Access

    I am try to use code to export user-defined fields from outlook task to an access DBase. I have seen the Microsoft Knowledge Base Article "How to Programmatically Export Items to Microsoft Access". However this article is for contact information. Can you help me modifiy this code to...
  7. plutz

    Automation to create an appointment

    I know how to use automation to add an appointment to microsoft Outlook on my desktop, but the question i have is there a way to establish an appointment in someone else's calendar?
  8. plutz

    Do Loop Problem

    I have a database that i am try to loop through a table (maillist)of email address to send out different reports based on the field [deptid]. can you help Dim project project = Deptid Do Until maillist.EOF If project = 1 Then DoCmd.SendObject acSendReport...
  9. plutz

    problem with Do Loops

    I have a database that i am try to loop through a table (maillist)of email address to send out different reports based on the field [deptid]. can you help Dim project project = Deptid Do Until maillist.EOF If project = 1 Then DoCmd.SendObject acSendReport...
  10. plutz

    dol loop while

    I have a Dbase which I would like to use to send one of several reports to individuals based on a field (deptid) in a form using a do loop while Not EOF and an If...Then..else statement, but I can't figure how to set the variable to equal the number in deptid Thank you for your help

Part and Inventory Search

Back
Top