Search results for query: *

  • Users: RGM
  • Order by date
  1. R

    Outlook - Setting Contact attributes using CallByName - Value not fall within range

    found it: Let vs Set Ok, figured it out, instead of using CallType.Set I'm now using CallType.Let. The reference documentation does not mention the possible use of Calltype.let as far as I can find: Interaction.CallByName Method (Microsoft.VisualBasic) Calling a Property or Method Using a...
  2. R

    Outlook - Setting Contact attributes using CallByName - Value not fall within range

    LS. I'm trying to update Outlook Contact attributes using CallByName, this because I do not know which attribute I will be setting at runtime. The attribute name (e.g. LastName) is passed to the function as a string as is the value it will be getting. for all combinations of attributes and...
  3. R

    Question How to: Invoke a Delegate Method

    Bloody hell..... that works.... :crushed: and is so much more elegant as what I was trying.... Thank you sir, you are a gentleman :smile:
  4. R

    Question How to: Invoke a Delegate Method

    Hi John, Thank you for the quick answer (and the update to my message, now I understand how to display code properly) :tennis: On your answer, I did that and yes that worked, as I ran in another issue I decided that I should learn how to use Control.Invoke anyway, hence the question. Since...
  5. R

    Test - code pasting in messages - Test

    code: Imports Microsoft.Win32 Public Class FRM_BrowseRegistry 'Create a Delegate Delegate Sub TV_RegistryAddNodeDelegate(ByVal NodeName As TreeNode) 'Declare a class that contains a method with the same signature as the delegate Public Class ShowtreeNodeClass Sub...
  6. R

    Question How to: Invoke a Delegate Method

    Hello all, As I'm new (both to VB.net and the forum) my apologies upfront for not using the correct terms, I'm reading up as fast as I can but will need some help and guidance. Now for the question: I'm trying to fill a TreeView in the background using the BackgroundWorker. My code worked as...
Back
Top