-
Topic
-
I am using the “MessageType” function that I pulled from other examples from Advansys. It produces an error -2147467259 quite frequently with no other information. Is it something I should be worried about or just ignore it in my code.
Execution Source : esUndefined(6) The applet was executed by an undefined means
Execution Source Info :
Error Location : MessageType
Error Desc :
Error Number : -2147467259
Error Source :
Public Function MessageType(Client)
On Error Resume Next
Dim iCount
Set Msg = Client.ClientState.CommandMessage
If Not IsObject(Msg) Then
MessageType = FALSE
iCount = Client.ClientState.SelectedMessages.Count
If iCount > 1 then
MessageType = FALSE
ElseIf iCount = 1 Then
Set Msg = Client.ClientState.SelectedMessages.Item(iCount)
MessageType = TRUE
End If
Else
MessageType = TRUE
End If
End Function
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.