Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
The Agent - splTheAgent.vb

splTheAgent.vb

Caricato da: Totem
Scarica il programma completo

  1. Public NotInheritable Class splTheAgent
  2.  
  3.     'TODO: This form can easily be set as the splash screen for the application by going to the "Application" tab
  4.     '  of the Project Designer ("Properties" under the "Project" menu).
  5.  
  6.  
  7.     Private Sub splTheAgent_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  8.         'Set up the dialog text at runtime according to the application's assembly information.  
  9.  
  10.         'TODO: Customize the application's assembly information in the "Application" pane of the project
  11.         '  properties dialog (under the "Project" menu).
  12.  
  13.         'Application title
  14.         'If My.Application.Info.Title <> "" Then
  15.         'ApplicationTitle.Text = My.Application.Info.Title
  16.         'Else
  17.         'If the application title is missing, use the application name, without the extension
  18.         'ApplicationTitle.Text = System.IO.Path.GetFileNameWithoutExtension(My.Application.Info.AssemblyName)
  19.         'End If
  20.  
  21.         'Format the version information using the text set into the Version control at design time as the
  22.         '  formatting string.  This allows for effective localization if desired.
  23.         '  Build and revision information could be included by using the following code and changing the
  24.         '  Version control's designtime text to "Version {0}.{1:00}.{2}.{3}" or something similar.  See
  25.         '  String.Format() in Help for more information.
  26.         '
  27.         '    Version.Text = System.String.Format(Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor, My.Application.Info.Version.Build, My.Application.Info.Version.Revision)
  28.  
  29.         'Version.Text = System.String.Format(Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor)
  30.  
  31.         'Copyright info
  32.         'Copyright.Text = My.Application.Info.Copyright
  33.     End Sub
  34.  
  35. End Class