|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, January 30, 2013 6:00 PM
Points: 6,
Visits: 53
|
|
Hi all,
I have a problem when trying to display a message in a NotifyIcon through a script task of SISS 2008, But it shows me the message as if it will reference either the drawing Does anyone know what could be happening? in which I put the following code:
Buenas a tod@s,
Tengo un problema al tratar de mostrar un mensaje en un NotifyIcon a traves de un script task de SISS 2008, Pero no me muestra el mensaje como si no referenciara bien el drawing ¿Alguien sabe que puede estar ocurriendo? en el cual puse el siguiente codigo :
' Microsoft SQL Server Integration Services Script Task ' Write scripts using Microsoft Visual Basic 2008. ' The ScriptMain is the entry point class of the script.
Imports System Imports Microsoft.SqlServer.Dts.Runtime Imports System.Data Imports System.Math
Imports System.IO Imports System.Windows.Forms Imports System.Drawing Imports System.EventArgs Imports System.Object Imports System.Reflection Imports ST_6e1db1aeb859412887e4b7e71aac20bf.vbproj
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _ <System.CLSCompliantAttribute(False)> _ Partial Public Class ScriptMain Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
Enum ScriptResults Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure End Enum
' The execution engine calls this method when the task executes. ' To access the object model, use the Dts property. Connections, variables, events, ' and logging features are available as members of the Dts property as shown in the following examples. ' ' To reference a variable, call Dts.Variables("MyCaseSensitiveVariableName").Value ' To post a log entry, call Dts.Log("This is my log text", 999, Nothing) ' To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, True) ' ' To use the connections collection use something like the following: ' ConnectionManager cm = Dts.Connections.Add("OLEDB") ' cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;" ' ' Before returning from this method, set the value of Dts.TaskResult to indicate success or failure. ' ' To open Help, press F1.
'Declaration Dim NotifyIcon1 As NotifyIcon Dim e As System.EventArgs Dim sender As System.Object Public Sub Main() ' Add your code here ' 'NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning
NotifyIcon1.Icon = New Icon("G:\Windows.ico") NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info NotifyIcon1.BalloonTipTitle = "Titulo" NotifyIcon1.BalloonTipText = "texto" NotifyIcon1.ShowBalloonTip(10000)
Dts.TaskResult = ScriptResults.Success End Sub
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 8:46 AM
Points: 240,
Visits: 653
|
|
I guess I am puzzled as to how a graphic would be displayed at all in SSIS? Can't imagine SQL Agent being ok with it, and there is no user to tell anything to.
What are your requirements?
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, January 30, 2013 6:00 PM
Points: 6,
Visits: 53
|
|
My requirement is to show a balloon as notify icon tool tip or a message or content of a variable that was why enter the code below to no longer use a msgbox in a script task but apparently need something to display the value of the message. Attached is an image that I want to display instead of a msgbox the value of a variable in a notify icon.
Thanks in advance for your support. 
Mi requerimiento es mostrar en un globo como tool tip o notify icon un mensaje o el contenido de una variable fue por eso que ingrese el código de abajo para ya no utilizar un msgbox en un script task pero al parecer falta algo para que se visualice el valor del mensaje. Adjunto una imagen que es la que quiero que se muestre en lugar de un msgbox el valor de una variable en un notify icon.
De antemano Gracias por su apoyo. 

Imports System Imports Microsoft.SqlServer.Dts.Runtime Imports System.Data Imports System.Math
Imports System.IO Imports System.Windows.Forms Imports System.Drawing Imports System.EventArgs Imports System.Object Imports System.Reflection Imports ST_6e1db1aeb859412887e4b7e71aac20bf.vbproj
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _ <System.CLSCompliantAttribute(False)> _ Partial Public Class ScriptMain Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
Enum ScriptResults Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure End Enum
' The execution engine calls this method when the task executes. ' To access the object model, use the Dts property. Connections, variables, events, ' and logging features are available as members of the Dts property as shown in the following examples. ' ' To reference a variable, call Dts.Variables("MyCaseSensitiveVariableName").Value ' To post a log entry, call Dts.Log("This is my log text", 999, Nothing) ' To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, True) ' ' To use the connections collection use something like the following: ' ConnectionManager cm = Dts.Connections.Add("OLEDB") ' cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;" ' ' Before returning from this method, set the value of Dts.TaskResult to indicate success or failure. ' ' To open Help, press F1.
'Declaration Dim NotifyIcon1 As NotifyIcon Dim e As System.EventArgs Dim sender As System.Object Public Sub Main() ' Add your code here ' 'NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning
NotifyIcon1.Icon = New Icon("G:\Windows.ico") NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info NotifyIcon1.BalloonTipTitle = "Titulo" NotifyIcon1.BalloonTipText = "texto" NotifyIcon1.ShowBalloonTip(10000)
Dts.TaskResult = ScriptResults.Success End Sub
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, January 30, 2013 6:00 PM
Points: 6,
Visits: 53
|
|
My requirement is to show a balloon as notify icon tool tip or a message or content of a variable that was why enter the code below to no longer use a msgbox in a script task but apparently need something to display the value of the message. Attached is an image that I want to display instead of a msgbox the value of a variable in a notify icon.
Thanks in advance for your support. 
Mi requerimiento es mostrar en un globo como tool tip o notify icon un mensaje o el contenido de una variable fue por eso que ingrese el código de abajo para ya no utilizar un msgbox en un script task pero al parecer falta algo para que se visualice el valor del mensaje. Adjunto una imagen que es la que quiero que se muestre en lugar de un msgbox el valor de una variable en un notify icon.
De antemano Gracias por su apoyo. 

Imports System Imports Microsoft.SqlServer.Dts.Runtime Imports System.Data Imports System.Math
Imports System.IO Imports System.Windows.Forms Imports System.Drawing Imports System.EventArgs Imports System.Object Imports System.Reflection Imports ST_6e1db1aeb859412887e4b7e71aac20bf.vbproj
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _ <System.CLSCompliantAttribute(False)> _ Partial Public Class ScriptMain Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
Enum ScriptResults Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure End Enum
' The execution engine calls this method when the task executes. ' To access the object model, use the Dts property. Connections, variables, events, ' and logging features are available as members of the Dts property as shown in the following examples. ' ' To reference a variable, call Dts.Variables("MyCaseSensitiveVariableName").Value ' To post a log entry, call Dts.Log("This is my log text", 999, Nothing) ' To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, True) ' ' To use the connections collection use something like the following: ' ConnectionManager cm = Dts.Connections.Add("OLEDB") ' cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;" ' ' Before returning from this method, set the value of Dts.TaskResult to indicate success or failure. ' ' To open Help, press F1.
'Declaration Dim NotifyIcon1 As NotifyIcon Dim e As System.EventArgs Dim sender As System.Object Public Sub Main() ' Add your code here ' 'NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning
NotifyIcon1.Icon = New Icon("G:\Windows.ico") NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info NotifyIcon1.BalloonTipTitle = "Titulo" NotifyIcon1.BalloonTipText = "texto" NotifyIcon1.ShowBalloonTip(10000)
Dts.TaskResult = ScriptResults.Success End Sub
|
|
|
|