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 Mike Lewis 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: aheu9
  • Order by date
  1. aheu9

    Creating taskItem in Outlook with date in string format

    I am creating an taskItem in outlook. I have a string with a date in the following format "day mm/dd/yyyy" and I want to use it as the taskItem.StartDate of the taskItem I am creating. How is this done because I get an error of types wehn I try to set the string to the .StartDate. Do u have to...
  2. aheu9

    REading in entire file

    Thank you for all the help, I ended up using the file system object, and used the ReadLine instead of ReadAll Method to avoid any future memory problems in a while loop using the AtEndOfStream property. Thanks for all the help!!
  3. aheu9

    REading in entire file

    What is the best way to read in an entire file without editing any characters. For example if I use a for loop until EOF it will input every string up to a space of newline, I want the spaces and the newlines intact. Is there an easy way to read in the entire file to a variable. I am using...
  4. aheu9

    REading from attachment text Outlook 2000

    I am trying to read in a text file attachment to a variable inside of Outlook 2000 on application startup. I have tried to use the AttachmentRead(attachment object) function but it seems to not be working correctly because I get an error that says it is not a valid method of a MailItem. The...
  5. aheu9

    Importing an Icalendar file with VB script

    Is it possible to automate the importation of an ICalendar file using VisualBasic? If so, how is it done??
  6. aheu9

    REading from attachment text Outlook 2000

    I want to read from an attachment of an email. I can get the attachment item, but I dont know how to read in the text exactly. I am using Outlook 2000. Thanks in advance!! Aheu9
  7. aheu9

    Reading attachments

    I read that there are problems with the AttachmentRead(attachment) function in Outlook 2000. Is this true? Is this the right function needed to acomplish this??
  8. aheu9

    Reading attachments

    Is this possible??
  9. aheu9

    Reading attachments

    I am using Outlook 2000 and visual basic 6. I want to run a script that reads in attachment text.
  10. aheu9

    Reading attachments

    I want to read in text from an attachment. How is this done? Thanks in advance!
  11. aheu9

    how to have a macro run open of outlook

    Thank you very much!!
  12. aheu9

    how to have a macro run open of outlook

    I created the macro however it is not running. My macro security is set to medium and I am enabling them upon startup. I tried setting the security to low and still no luck. Does the fact that the subroutine i named "Application_Startup" make it run on startup or what specifically determines...
  13. aheu9

    Creating new calendar even within macro

    I fixed ther error I added these lines of code Dim out As Outlook.NameSpace Set out = olApp.GetNamespace("MAPI") out.Logon
  14. aheu9

    Creating new calendar even within macro

    Dim olAppt As Outlook.AppointmentItem (or MeetingItem, get the same error either way) Set olAppt = olApp.CreateItem(olAppointmentItem) When I run the following two lines of code I get an error that says olAppt equals nothing. I am trying to add calendar events from a macro. Like in the...
  15. aheu9

    how to have a macro run open of outlook

    I want a macro to run when outlook is opened. How can this be done???' Thanks for any help in advance
  16. aheu9

    Reading mail

    I am using outlook 2000(visual basic 6) and I am looking to create a script that reads in data either from an attachment or the email body itself. the data will be in .csv format. It will be calendar data and I want to create a calendar event in outlook for each of these events. I want to...
  17. aheu9

    Reading mail

    I want to create a visual basic 6 script that reads in an emails text to process is. Also, is there a way to have a macro run on the opening or receival of an email. All help would be greatly appreciated. Thanks in advance.

Part and Inventory Search

Back
Top