DTS Status Message

  • Hi,
     
    Is there a way to display a status message or progress feedback to users in DTS SQL 2000 using VBScript without having the user to acknowledge the message, i.e. no buttons in the message window similar to MsgBox().
     
    Thanks,
  • You can use a Window Script Host popup methode to popup a message and the message box will terminate itself after a defined time (second).

    This methode is not an Event driven.  You have to plan out the time for the Message box to close.

    Dim WshShell

    Set WshShell = WScript.CreateObject("WScript.Shell")

    ' Displays a message for 3 seconds

    WshShell.popup "Hello", 3

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply