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 IamaSherpa 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: *

  1. lsman11

    Eventsink: cause of EVT_REPLICATED_ITEM Event

    Hello, I have an Eventsink for Exchange 2003, and i am wondering on what cases would a EVT_REPLICATED_ITEM to occurr on the onSave method? The description from MSDN states: The item is being replicated from another location. But that is still unclear to me, can someone provide 1 or 2 use...
  2. lsman11

    arraylist : maximum number of entries

    Anyone have a reference/idea on how many entries an arraylist can hold? Or perhaps any memory size limitations? I am currently using it to hold 8 byte objects... thanks, LSM
  3. lsman11

    Determine outlook explorer window coordinates

    ok, so if you have reference to explorer object... the .left property is equivalent to x coordinate the .top property is equivalent to y coordinate ; ) lsm
  4. lsman11

    Determine outlook explorer window coordinates

    I am displaying a new dialog box, and would like it to appear on the screen within my outlook application window (so relative to outlook)... since a person may have multiple monitors, etc, i want to make sure it appears 'friendly'... (dont want outlook on monitor 1 and my dialog box to appear on...
  5. lsman11

    determine outlook explorer coordinates

    Hello, does anyone know how to determine the window coordinates of my outlook application (the explorer window).. i cant seem to drill down enough to find the property. i am currently using c#, and have an instance of a Outlook.Explorer object thanks, lsm
  6. lsman11

    trying to produce email link within email

    I have a new email msg, and i want to include a link to another email msg in the body. This is what is produced: <Outlook:00000000455035995E6EA148A47A77E5E6BD5B7324022100> by using code of: string link = "Outlook:"+ mailItem.EntryID; stubMail.Body = "<" + link + ">"; stubMail.Save()...
  7. lsman11

    Having difficulty deleting PST file while outlook has handle

    I am trying to delete a PST file via File.Delete("..."), but it appears that outlook may have exclusive access to the file at the moment... even if i removed the PST from my outlook explorer (closed the PST)... is there a way for me to force outlook, or at least the file itself, to be deleted...
  8. lsman11

    Determine outlook explorer window coordinates

    Hello, does anyone know how to determine the window coordinates of my outlook application (the explorer window).. i cant seem to drill down enough to find the property. thanks, lsm
  9. lsman11

    Casting Outlook.Attachment object back into Outlook.Mailitem Object

    I have a reference to an Outlook.Attachment object, 'a', and i would like to cast 'a' back into a Outlook.MailItem, but i am receiving cannotCast exceptions... I know for a fact that the attachment is an email. Is there any way to cast the attachment object? Any ideas appreciated,thanks! Luis
  10. lsman11

    Casting Outlook Attachment object back into Outlook.MailItem

    I have a reference to an Outlook.Attachment object, 'a', and i would like to cast 'a' back into a Outlook.MailItem, but i am receiving cannotCast exceptions... I know for a fact that the attachment is an email. Is there any way to cast the attachment object? Any ideas appreciated, also pls let...
  11. lsman11

    Outlook API to open PST and update PST contents

    ok, i understand where your coming from. How would a user send all the contents of their mailbox to another user, who is not part of that exchange server? (ie, across different companies, etc) though i cannot use other mediums, i am open to hear alternatives thanks, lsm
  12. lsman11

    Outlook API to open PST and update PST contents

    ok, i understand where your coming from. How would a user send all the contents of their mailbox to another user, who is not part of that exchange server? (ie, across different companies, etc) though i cannot use other mediums, i am open to hear alternatives thanks, lsm
  13. lsman11

    Outlook API to open PST and update PST contents

    Do you think the following scenario is possible with some provided Microsoft API: 1. User is provided PST file for outlook 2. In outlook, chooses some new action "update PST" 3. logic programaticaly goes through every msg in the PST, and can either: 3a. leave the msg alone 3b. remove the...
  14. lsman11

    vba to open an email (simulate a double click)

    Dim ns As NameSpace Dim Inbox As MAPIFolder Dim Item As Object Set ns = GetNamespace("MAPI") Set Inbox = ns.GetDefaultFolder(olFolderInbox) For Each Item In Inbox.Items ... (here is where lets say, i'd like to open each email) Next Item ----- If anything, can someone please point me...
  15. lsman11

    vba to open an email (simulate a double click)

    Hi, I am looking for some vba code to traverse through, lets say, my inbox folder, and open each email in there (similar to double clicking on each email), so that an outlook window pops up for each email... any ideas? Any help appreciated. Thanks !
  16. lsman11

    REXX and Pattern Recognition (of other patterns)

    ty very much,
  17. lsman11

    REXX and Pattern Recognition (of other patterns)

    Hello, During a meeting, we were questioned about REXX's ability for pattern recognition. The straightforward question is, does REXX contain pattern recognition, that is powerful enough to compare two patterns against each other (which would be able to determine if one pattern is a SUBSET of...
  18. lsman11

    Dell laptop won't start

    hi, i have a dell 3800 laptop with a very similar problem. Try to bang the bottom of the laptop, and then turn it on (this actually helped me, im guessing a connection is loose internally0.. i believe my HD was bad, so i replaced it with a new one (much quieter too), and the problem...

Part and Inventory Search

Back
Top