Files
reddit-post-scraping-tool/RPST GUI/RPST/SplashScreen.vb
Richard Mwewa 0023a974fc dev 1.9.0.0
2023-08-31 20:43:00 +02:00

10 lines
349 B
VB.net

Public NotInheritable Class SplashScreen
Private Sub SplashScreen_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Version info
Version.Text = $"Version {My.Application.Info.Version}"
'Copyright info
Copyright.Text = My.Application.Info.Copyright
End Sub
End Class