Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Author
    Replies
  • in reply to: Sender object #7891
    brussill
    Participant

      no. i meant when you have

      sub MySub(Sender)

      end sub

      which is the event handler for controls. That ‘Sender’

      in reply to: Sender object #7890
      brussill
      Participant

        its a delphi object… woohoo

        in reply to: HtmlDom.loadfromurl problems #7863
        brussill
        Participant

          ‘doc.body.innerhtml’ only captures tags within <body>. I want all tags.

          in reply to: XmlDom.loadfromdisk problems #7862
          brussill
          Participant

            ‘msgbox doc.xml’ is empty as well.

            in reply to: API not matching documentation #5578
            brussill
            Participant

              It seems theres a user config conflict with some of the Novell users.

              The other thing, the msg.to_, msg.bc, msg.cc only return Novell validated users (which is not documented). Trying to figure out why some users are validated and others are not.

              in reply to: API not matching documentation #5581
              brussill
              Participant

                ARGH. It and the other examples work for certain users… I’m trying to figure out how come some display and others do not.

                in reply to: API not matching documentation #5579
                brussill
                Participant

                  Hi,

                  I tried the suggested steps and still get empty <TO>, <CC>, <BC> in the message boxes… is there a security setting somewhere that is preventing me from getting the values?

                  in reply to: API not matching documentation #5576
                  brussill
                  Participant

                    The message is whats created when you click ‘New Mail’.

                    I’ve also tried using GW 7.0.1 and most recent Formativ.

                    in reply to: API not matching documentation #5574
                    brussill
                    Participant

                      I’ve tried using the following 6 methods to get <TO>, <BC>, <CC> and none work including your suggested code. Please help.

                      Groupwise – 6.5.6 (2/1/2006)
                      Formativ – Build 2.0.0.12

                      METHOND 1)

                      dim msgid
                      msgid = groupwise.ItemMessageIDFromView
                      msgbox groupwise.itemgettext(msgid,itfBC)

                      METHOD 2)
                      dim RecCounter, RecipientEntry, CCRecHolder, BCRecHolder
                      dim RecHolder

                      If msg.Recipients.count > 0 then
                      for RecCounter = 1 to Msg.Recipients.count
                      set RecipientEntry = Msg.Recipients.Item(RecCounter)
                      ‘ Recipient type of an address
                      Select Case RecipientEntry.TargetType
                      Case 0 RecHolder = RecHolder & RecipientEntry.EmailAddress & “, “
                      Case 1 CCRecHolder = CCRecHolder & RecipientEntry.EmailAddress & “, “
                      Case 2 BCRecHolder = BCRecHolder & RecipientEntry.EmailAddress & “, “
                      End Select
                      set RecipientEntry = nothing
                      next
                      End if
                      msgbox “RecHolder=” & RecHolder
                      msgbox “ccRecHolder=” & CCRecHolder
                      msgbox “bcRecHolder=” & BCecHolder

                      METHOD 3)
                      set msg = GroupWise.ComposingItem
                      msgbox msg.to_ ‘DOES NOT WORK
                      msgbox msg.subject’WORKS

                      METHOD 4)
                      call groupwise.focusset(fcsCC, “”)
                      msgbox “char=” & groupwise.envtextcurrentword

                      METHOD 5)
                      iMsgID = groupwise.ItemMessageIDFromView

                      ‘ TO
                      msgbox groupwise.ItemGetText(iMsgID, 0)

                      METHOD 6) does NOT work for active (DRAFT) object

                      Set oMsg = Client.ClientState.CommandMessage

                      for x = 1 to oMsg.Recipients.Count
                      set oRecipient = oMsg.Recipients.Item(x)
                      msgbox oRecipient.EmailAddress & vbcrlf & oRecipient.TargetType
                      set oRecipient = nothing
                      next

                      set oMsg = nothing

                    Viewing 9 replies - 1 through 9 (of 9 total)