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 derfloh 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
  • 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

    Application setup to run on CD

    Boulderridge, I have a similar question I have a secured DB that we use within our office, however I would like to allow a client access to this DB through a portal. I do not know how to ensure that the correct mdw file, associated with the DB, is used by the client when he downloads the DB...
  4. plutz

    Picture in my report

    Bob, is it possible to have the picture only visiable when you click on command button or enlarged when clicked?
  5. 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.
  6. 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...
  7. 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...
  8. 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...
  9. plutz

    Automation to create an appointment

    yes it is a calendar in a public folder that i trying to add to
  10. 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?
  11. plutz

    Do Loop Problem

    thanks I got it
  12. plutz

    Do Loop Problem

    How would you do this?
  13. plutz

    Do Loop Problem

    a macro opens maillist form prior to running the code
  14. plutz

    Do Loop Problem

    I still get the error message object required on the DO Until Maillist.EOF line
  15. plutz

    Do Loop Problem

    i get an error message that an object is required. I am unable to set project equal to the value in the field deptid
  16. plutz

    Do Loop Problem

    i get an error message that an object is required
  17. 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...
  18. 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...

Part and Inventory Search

Back
Top