Message box method inside the script:
Example Script Visual Basic

IImports System
Imports System.IO
Imports System.Windows.Forms
Imports Microsoft.VisualBasic
Imports System.Data.SqlClient

Namespace WinTr
Public Class MainClass
       Public Sub Load
       '------- Script Start Line -------
       Msgbox("Fultek")
       '------- Script End Line -------
       End Sub
End Class
End Namespace

Message box method inside the script:
Example Script C Sharp

using System;
using System.IO;
using System.Windows.Forms;
using Microsoft.CSharp;

namespace WinTr
{
    class MainClass
    {
          public void Load()
          {
          MessageBox.Show("Hello");
          }
    }
}



shape
Message Box Script
WinTr Scada Logo