Assembly: EDKB12WS (in EDKB12WS.exe)

Syntax

Visual Basic

Private Sub Send_Message( _
   ByVal message As String _
)

C#

private System.Void Send_Message(
   stringmessage
)

C++

private: 
System::Void Send_Message(
   Stringmessage

JScript

private function Send_Message(
    message : String
);

Parameters

message

 

 

 

 

Source code

Visual Basic

 Private Sub Send_Message(ByVal message As String)
    Dim betreff As String
    Dim meldung As String
    betreff = Param.FehlermeldungBetreff
    meldung = Param.FehlerMeldungMeldung
    meldung = meldung.Replace("#Message#", message)
 
    Dim scmCmdToExecute As SqlCommand = New SqlCommand()
    scmCmdToExecute.CommandText = "sp_edkb12_meldung"
    scmCmdToExecute.CommandType = CommandType.StoredProcedure
    Dim dtToReturn As DataTable = New DataTable()
    Dim sdaAdapter As SqlDataAdapter = New SqlDataAdapter(scmCmdToExecute)
    Try
        scmCmdToExecute.Connection = Globals.conn.scoDBConnection
        scmCmdToExecute.Parameters.Add(New SqlParameter("@status", SqlDbType.Int, 225, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, -1))
        scmCmdToExecute.Parameters.Add(New SqlParameter("@mitarbeiter", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, Param.MaNrFehlermeldung))
        scmCmdToExecute.Parameters.Add(New SqlParameter("@betreff", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, betreff))
        scmCmdToExecute.Parameters.Add(New SqlParameter("@meldung", SqlDbType.VarChar, 1024, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, meldung))
        scmCmdToExecute.Parameters.Add(New SqlParameter("@dokumentid", SqlDbType.VarChar, 22, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, ""))
        sdaAdapter.Fill(dtToReturn)
        Return
    Catch ex As Exception
        DivFnkt.InsertJournale("EDKB12::Fehler:: Send_Message::" & ex.Message, clsDivFnkt.Enum_InfoTyp.Fehler)
        If Param.DebugMode Then
            DivFnkt.InsertJournale("EDKB12: Ende Send_Message (False)::" & ex.Message, clsDivFnkt.Enum_InfoTyp.Information)
        End If
    Finally
        scmCmdToExecute.Dispose()
        sdaAdapter.Dispose()
    End Try
 
 End Sub 

Platforms

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

 

Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0
 

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
 

XNA Framework

Supported in: 3.0, 2.0, 1.0
 

 

See Also