2022-11-02 21:28:19 +00:00
Imports System . IO
Public Class Terminal
2022-11-01 22:57:27 +00:00
Public command As String
Public DefaultPrompt As String
Public TrackPos As Integer
2022-11-02 01:52:31 +00:00
Public AdvancedCommand As Boolean
2022-11-02 04:17:14 +00:00
Public BadCommand As Boolean
2022-11-02 21:28:19 +00:00
Public DisplayStory As Integer
Public StoryToTell As String
2022-11-03 15:27:40 +00:00
Public ChangeInterpreter As Boolean = False
2022-11-04 06:12:41 +00:00
Public CurrentInterpreter As String = " terminal "
2022-11-01 22:57:27 +00:00
Private Sub Terminal_Load ( sender As Object , e As EventArgs ) Handles MyBase . Load
FormBorderStyle = FormBorderStyle . None
WindowState = FormWindowState . Maximized
2022-11-04 06:12:41 +00:00
InitializeTerminal ( )
End Sub
Public Sub InitializeTerminal ( )
2022-11-01 22:57:27 +00:00
If Strings . IsFree = True Then
Strings . ComputerInfo ( 0 ) = " shiftos "
Strings . ComputerInfo ( 1 ) = " user "
2022-11-04 01:56:41 +00:00
'Strings.ComputerInfo(2) = 0
2022-11-04 06:12:41 +00:00
CheckFeature ( )
2022-11-01 22:57:27 +00:00
PrintPrompt ( )
AssignPrompt ( )
2022-11-02 01:52:31 +00:00
Else
2022-11-02 21:28:19 +00:00
If Strings . ComputerInfo ( 3 ) = " 0 " Then
TextBox1 . ReadOnly = True
StoryOnlyTimer . Start ( )
Else
Strings . ComputerInfo ( 0 ) = " shiftos "
Strings . ComputerInfo ( 1 ) = " user "
Strings . ComputerInfo ( 2 ) = 0
2022-11-04 06:12:41 +00:00
CheckFeature ( )
2022-11-02 21:28:19 +00:00
PrintPrompt ( )
AssignPrompt ( )
End If
2022-11-01 22:57:27 +00:00
End If
2022-11-02 01:52:31 +00:00
TextBox1 . Select ( TextBox1 . TextLength , 0 )
TextBox1 . ScrollToCaret ( )
2022-11-01 22:57:27 +00:00
End Sub
2022-11-04 06:12:41 +00:00
Public Sub CheckFeature ( )
If Strings . AvailableFeature ( 4 ) = " 1 " Then
InfoBarTimer . Start ( )
TextBox1 . Dock = DockStyle . None
InfoBar . Visible = True
InfoBar . SendToBack ( )
TextBox1 . Dock = DockStyle . Fill
Else
TextBox1 . Dock = DockStyle . None
InfoBar . Visible = False
TextBox1 . Dock = DockStyle . Fill
End If
End Sub
2022-11-01 22:57:27 +00:00
Public Sub PrintPrompt ( )
If TextBox1 . Text = Nothing Then
2022-11-03 15:27:40 +00:00
If ChangeInterpreter = True Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & DefaultPrompt
2022-11-01 22:57:27 +00:00
Else
2022-11-03 15:27:40 +00:00
If Strings . OnceInfo ( 0 ) = " Yes " Then
TextBox1 . Text = " root@ " & Strings . ComputerInfo ( 0 ) & " #> "
Else
TextBox1 . Text = Strings . ComputerInfo ( 1 ) & " @ " & Strings . ComputerInfo ( 0 ) & " $> "
End If
2022-11-01 22:57:27 +00:00
End If
Else
2022-11-03 15:27:40 +00:00
If ChangeInterpreter = True Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & DefaultPrompt
2022-11-01 22:57:27 +00:00
Else
2022-11-03 15:27:40 +00:00
If Strings . OnceInfo ( 0 ) = " Yes " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " root@ " & Strings . ComputerInfo ( 0 ) & " #> "
Else
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & Strings . ComputerInfo ( 1 ) & " @ " & Strings . ComputerInfo ( 0 ) & " $> "
End If
2022-11-01 22:57:27 +00:00
End If
End If
End Sub
Public Sub AssignPrompt ( )
2022-11-03 15:27:40 +00:00
If ChangeInterpreter = False Then
If Strings . OnceInfo ( 0 ) = " Yes " Then
DefaultPrompt = " root@ " & Strings . ComputerInfo ( 0 ) & " #> "
Else
DefaultPrompt = Strings . ComputerInfo ( 1 ) & " @ " & Strings . ComputerInfo ( 0 ) & " $> "
End If
2022-11-01 22:57:27 +00:00
End If
End Sub
2022-11-02 04:17:14 +00:00
Private Sub Undeveloped ( )
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " Oopsie! It's only for newer version "
End Sub
2022-11-01 22:57:27 +00:00
Private Sub ReadCommand ( )
command = TextBox1 . Lines ( TextBox1 . Lines . Length - 1 )
command = command . Replace ( DefaultPrompt , " " )
command = command . ToLower ( )
End Sub
2022-11-02 01:52:31 +00:00
Private Sub DoCommand ( )
AdvancedCommand = True
2022-11-02 04:17:14 +00:00
BadCommand = True
2022-11-02 01:52:31 +00:00
Select Case command
2022-11-02 04:17:14 +00:00
Case " "
2022-11-02 01:52:31 +00:00
AdvancedCommand = False
2022-11-02 04:17:14 +00:00
BadCommand = False
Case " clear "
If Strings . AvailableFeature ( 1 ) = " 1 " Then
TextBox1 . Text = Nothing
AdvancedCommand = False
BadCommand = False
End If
2022-11-02 02:57:21 +00:00
Case " codepoint "
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & Strings . ComputerInfo ( 2 ) & " Codepoint(s) available in your wallet "
AdvancedCommand = False
2022-11-02 04:17:14 +00:00
BadCommand = False
Case " guess "
2022-11-03 15:27:40 +00:00
ChangeInterpreter = True
AppHost ( " guess " )
AdvancedCommand = False
BadCommand = False
'Undeveloped()
2022-11-02 19:46:32 +00:00
Case " gimme "
Dim TempCP As Integer = Convert . ToInt32 ( Strings . ComputerInfo ( 2 ) )
TempCP = TempCP + 50
Strings . ComputerInfo ( 2 ) = Convert . ToString ( TempCP )
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " you cheater! "
2022-11-02 02:57:21 +00:00
Case " help "
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " ShiftOS Help Manual " & Environment . NewLine & Environment . NewLine & " You can type 'help' to get all available commands and its corresponding action. "
If Strings . AvailableFeature ( 0 ) = 1 Then
2022-11-02 04:17:14 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " To get help on each command, you can type 'man [command]' " & Environment . NewLine
Else
TextBox1 . Text = TextBox1 . Text & Environment . NewLine
2022-11-02 02:57:21 +00:00
End If
If Strings . AvailableFeature ( 1 ) = 1 Then
2022-11-02 19:46:32 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " CLEAR Clear the terminal "
2022-11-02 02:57:21 +00:00
End If
2022-11-02 18:52:22 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " CODEPOINT Display Codepoint(s) from your wallet "
2022-11-04 01:56:41 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " GUESS Runs 'Guess the Number' application "
2022-11-02 18:52:22 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " HELP Shows all commands available and its corresponding action "
2022-11-02 02:57:21 +00:00
If Strings . AvailableFeature ( 0 ) = 1 Then
2022-11-02 18:52:22 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " MAN Shows a command, its corresponding action, and its example usage "
2022-11-02 02:57:21 +00:00
End If
2022-11-04 01:56:41 +00:00
If Strings . AvailableFeature ( 2 ) = 1 Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " PRINT Prints a corresponding text entered in the command "
End If
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " SHIFTORIUM A software center for upgrading features on ShiftOS "
2022-11-02 18:52:22 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " SHUTDOWN Terminate ShiftOS session "
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " SU Runs terminal as super user "
2022-11-04 06:12:41 +00:00
If Strings . AvailableFeature ( 5 ) = 1 Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " TIME Display the current time in the form of seconds since midnight "
ElseIf Strings . AvailableFeature ( 5 ) = 3 Then
If Strings . AvailableFeature ( 6 ) = 1 Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " TIME Display the current time in the form of minutes since midnight "
ElseIf Strings . AvailableFeature ( 6 ) = 3 Then
If Strings . AvailableFeature ( 7 ) = 1 Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " TIME Display the current time in the form of hours since midnight "
End If
End If
End If
2022-11-02 18:52:22 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " VER Printing current version of ShiftOS TheRevival "
2022-11-02 02:57:21 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine
2022-11-02 04:17:14 +00:00
AdvancedCommand = False
BadCommand = False
2022-11-04 06:12:41 +00:00
Case " reboot "
TextBox1 . Text = Nothing
AdvancedCommand = False
BadCommand = False
InitializeTerminal ( )
2022-11-02 11:09:01 +00:00
Case " su "
If Strings . OnceInfo ( 0 ) = " Yes " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " You already in root mode! "
Else
Strings . OnceInfo ( 0 ) = " Yes "
AssignPrompt ( )
End If
AdvancedCommand = False
BadCommand = False
2022-11-02 01:52:31 +00:00
Case " shutdown " , " shut down "
ShiftOSMenu . Show ( )
Close ( )
2022-11-04 06:12:41 +00:00
Case " time "
If Strings . AvailableFeature ( 5 ) = " 1 " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalSeconds ) & " seconds passed since midnight "
ElseIf Strings . AvailableFeature ( 5 ) = " 3 " Then
If Strings . AvailableFeature ( 6 ) = " 1 " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalMinutes ) & " minutes passed since midnight "
ElseIf Strings . AvailableFeature ( 6 ) = " 3 " Then
If Strings . AvailableFeature ( 7 ) = " 1 " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalHours ) & " hours passed since midnight "
End If
End If
End If
AdvancedCommand = False
BadCommand = False
2022-11-02 18:52:22 +00:00
Case " ver "
2022-11-04 01:56:41 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " ShiftOS TheRevival version " & My . Resources . CurrentVersion
2022-11-02 18:52:22 +00:00
AdvancedCommand = False
BadCommand = False
2022-11-02 01:52:31 +00:00
End Select
If AdvancedCommand = True Then
2022-11-02 18:52:22 +00:00
If command Like " man * " Then
2022-11-02 19:46:32 +00:00
If Strings . AvailableFeature ( 0 ) = " 1 " Then
'MAN command starts with this kinda format
'ShiftOS Help Manual
'
''command' Usage: [switch/value if needed]
'
'Summary of the command's action
'
'Example usage : command
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " ShiftOS Help Manual " & Environment . NewLine
'TextBox1.Text = TextBox1.Text & Environment.NewLine & command.Substring(4)
Dim mancommand As String = command . Replace ( " man " , " " )
Dim TempUsage As String = " ' " & mancommand & " ' Usage: "
Select Case mancommand
2022-11-03 15:27:40 +00:00
'In process to convert every command from printing from code to printing from text file
2022-11-02 19:46:32 +00:00
Case " clear "
2022-11-03 15:27:40 +00:00
If Strings . AvailableFeature ( 1 ) = " 1 " Then
TempUsage = TempUsage & " clear "
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_clear & Environment . NewLine
BadCommand = False
End If
2022-11-02 19:46:32 +00:00
Case " codepoint "
TempUsage = TempUsage & " codepoint "
2022-11-03 15:27:40 +00:00
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_codepoint & Environment . NewLine
2022-11-02 19:46:32 +00:00
BadCommand = False
2022-11-04 01:56:41 +00:00
Case " guess "
TempUsage = TempUsage & " guess "
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_guess & Environment . NewLine
BadCommand = False
2022-11-02 19:46:32 +00:00
Case " help "
TempUsage = TempUsage & " help "
2022-11-04 01:56:41 +00:00
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_help & Environment . NewLine
2022-11-02 19:46:32 +00:00
BadCommand = False
Case " man "
2022-11-04 01:56:41 +00:00
If Strings . AvailableFeature ( 0 ) = " 1 " Then
TempUsage = TempUsage & " man [command] "
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_man & Environment . NewLine
BadCommand = False
End If
Case " print "
If Strings . AvailableFeature ( 2 ) = " 1 " Then
TempUsage = TempUsage & " print [text] "
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_print & Environment . NewLine
BadCommand = False
End If
Case " shiftorium "
TempUsage = TempUsage & " shiftorium [option] [featureName] "
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_shiftorium & Environment . NewLine
2022-11-02 19:46:32 +00:00
BadCommand = False
Case " shutdown "
TempUsage = TempUsage & " shutdown "
2022-11-04 01:56:41 +00:00
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_shutdown & Environment . NewLine
2022-11-02 19:46:32 +00:00
BadCommand = False
Case " ver "
TempUsage = TempUsage & " ver "
2022-11-04 01:56:41 +00:00
TextBox1 . Text = TextBox1 . Text & TempUsage & Environment . NewLine & Environment . NewLine & My . Resources . man_ver & Environment . NewLine
2022-11-02 19:46:32 +00:00
BadCommand = False
Case Else
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " MAN : Invalid command "
End Select
End If
2022-11-02 18:52:22 +00:00
End If
If command Like " shiftorium * " Then
Dim prompt As String = command . Replace ( " shiftorium " , " " )
2022-11-02 19:46:32 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " Shiftorium ShiftOS Center "
2022-11-02 18:52:22 +00:00
If prompt Like " info * " Then
2022-11-04 01:56:41 +00:00
Shiftoriums . prompt = command . Replace ( " shiftorium info " , " " )
Shiftorium_InformationFeatures ( )
2022-11-02 18:52:22 +00:00
End If
If prompt Like " install * " Then
2022-11-04 01:56:41 +00:00
Shiftoriums . prompt = command . Replace ( " shiftorium install " , " " )
Shiftorium_DetectInstallFeatures ( )
2022-11-02 18:52:22 +00:00
End If
If prompt = " list " Then
2022-11-04 01:56:41 +00:00
Shiftorium_ListFeatures ( )
2022-11-02 19:46:32 +00:00
BadCommand = False
2022-11-02 18:52:22 +00:00
End If
End If
2022-11-02 21:28:19 +00:00
If command Like " print * " Then
2022-11-04 01:56:41 +00:00
If Strings . AvailableFeature ( 2 ) = " 1 " Then
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & command . Substring ( 6 )
Dim printed As String = command . Replace ( " print " , " " )
''It has the same issue, only displays in lowercase
'TextBox1.Text = TextBox1.Text & Environment.NewLine & printed
BadCommand = False
End If
2022-11-02 01:52:31 +00:00
End If
2022-11-02 21:28:19 +00:00
AdvancedCommand = False
End If
2022-11-02 04:17:14 +00:00
2022-11-02 21:28:19 +00:00
If BadCommand = True Then
2022-11-02 04:17:14 +00:00
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " Bad command or wrong file name "
End If
2022-11-02 01:52:31 +00:00
End Sub
2022-11-01 22:57:27 +00:00
Private Sub txtterm_KeyPress ( ByVal sender As Object , ByVal e As System . Windows . Forms . KeyEventArgs ) Handles TextBox1 . KeyDown
If e . KeyCode = Keys . T AndAlso e . Control Then
Me . Hide ( )
e . SuppressKeyPress = True
End If
Select Case e . KeyCode
Case Keys . ShiftKey
TrackPos = TrackPos - 1
Case Keys . Alt
TrackPos = TrackPos - 1
Case Keys . CapsLock
TrackPos = TrackPos - 1
Case Keys . ControlKey
TrackPos = TrackPos - 1
Case Keys . LWin
TrackPos = TrackPos - 1
Case Keys . RWin
TrackPos = TrackPos - 1
Case Keys . Right
If TextBox1 . SelectionStart = TextBox1 . TextLength Then
TrackPos = TrackPos - 1
End If
Case Keys . Left
If TrackPos < 1 Then
e . SuppressKeyPress = True
TrackPos = TrackPos - 1
Else
TrackPos = TrackPos - 2
End If
Case Keys . Up
e . SuppressKeyPress = True
TrackPos = TrackPos - 1
Case Keys . Down
e . SuppressKeyPress = True
TrackPos = TrackPos - 1
End Select
If e . KeyCode = Keys . Enter Then
e . SuppressKeyPress = True
2022-11-04 01:56:41 +00:00
If TextBox1 . ReadOnly = True Then
2022-11-01 22:57:27 +00:00
Else
2022-11-04 01:56:41 +00:00
ReadCommand ( )
If ChangeInterpreter = True Then
DoChildCommand ( )
PrintPrompt ( )
TextBox1 . Select ( TextBox1 . Text . Length , 0 )
Else
DoCommand ( )
PrintPrompt ( )
TextBox1 . Select ( TextBox1 . Text . Length , 0 )
End If
2022-11-01 22:57:27 +00:00
End If
2022-11-03 15:27:40 +00:00
'If command = "clear" Then
' PrintPrompt()
' TextBox1.Select(TextBox1.Text.Length, 0)
'Else
' PrintPrompt()
' TextBox1.Select(TextBox1.Text.Length, 0)
'End If
2022-11-01 22:57:27 +00:00
TrackPos = 0
Else
If e . KeyCode = Keys . Back Then
Else
TrackPos = TrackPos + 1
End If
End If
If e . KeyCode = Keys . Back Then
If TrackPos < 1 Then
e . SuppressKeyPress = True
Else
If TextBox1 . SelectedText . Length < 1 Then
TrackPos = TrackPos - 1
Else
e . SuppressKeyPress = True
End If
End If
End If
2022-11-02 02:57:21 +00:00
TextBox1 . Select ( TextBox1 . TextLength , 0 )
TextBox1 . ScrollToCaret ( )
2022-11-01 22:57:27 +00:00
End Sub
Private Sub TextBox1_Click ( sender As Object , e As EventArgs ) Handles TextBox1 . Click , TextBox1 . MouseDoubleClick
TextBox1 . Select ( TextBox1 . TextLength , 0 )
TextBox1 . ScrollToCaret ( )
End Sub
2022-11-02 21:28:19 +00:00
Private Sub StoryOnlyTimer_Tick ( sender As Object , e As EventArgs ) Handles StoryOnlyTimer . Tick
Select Case Strings . ComputerInfo ( 3 )
Case " 0 "
Select Case DisplayStory
Case 5
TextBox1 . Text = " Connected to <null> "
Case 25
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: Hey there, Unknown user! "
Case 40
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: You have been selected for an unvolentary test on my experimental operating system, ShiftOS "
Case 90
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: ShiftOS is an operating system that purposes itself to evolve itself as the time progresses "
Case 140
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: I will add features into the operating system as you use it "
Case 170
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: Currently ShiftOS didn't have that much function aside from a command line with little command "
Case 190
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: I'll install ShiftOS now on your system "
Case 215
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null>: I will come back and contact you later on when the time is necessary, see you! "
Case 250
TextBox1 . Text = TextBox1 . Text & Environment . NewLine & " <null> Disconnected "
Case 275
TextBox1 . Text = " Installing ShiftOS... "
Case 350
TextBox1 . Text = " ShiftOS Installed, The computer will restart in a few seconds "
Case 400
TextBox1 . Text = Nothing
TextBox1 . ReadOnly = False
Strings . ComputerInfo ( 0 ) = " shiftos "
Strings . ComputerInfo ( 1 ) = " user "
Strings . ComputerInfo ( 2 ) = 0
PrintPrompt ( )
AssignPrompt ( )
TextBox1 . Select ( TextBox1 . TextLength , 0 )
TextBox1 . ScrollToCaret ( )
End Select
End Select
DisplayStory = DisplayStory + 1
End Sub
2022-11-04 06:12:41 +00:00
Private Sub InfoBarTimer_Tick ( sender As Object , e As EventArgs ) Handles InfoBarTimer . Tick
InfoBar . Text = " | "
If Strings . AvailableFeature ( 5 ) = " 1 " Then
InfoBar . Text = InfoBar . Text & " " & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalSeconds ) & " | "
ElseIf Strings . AvailableFeature ( 5 ) = " 3 " Then
If Strings . AvailableFeature ( 6 ) = " 1 " Then
InfoBar . Text = InfoBar . Text & " " & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalMinutes ) & " | "
ElseIf Strings . AvailableFeature ( 6 ) = " 3 " Then
If Strings . AvailableFeature ( 7 ) = " 1 " Then
InfoBar . Text = InfoBar . Text & " " & Math . Floor ( Date . Now . Subtract ( Date . Today ) . TotalHours ) & " | "
End If
End If
End If
If Strings . OnceInfo ( 0 ) = " Yes " Then
InfoBar . Text = InfoBar . Text & " root | "
Else
InfoBar . Text = InfoBar . Text & " user | "
End If
InfoBar . Text = InfoBar . Text & " " & CurrentInterpreter & " | "
InfoBar . Text = InfoBar . Text & " " & Strings . ComputerInfo ( 2 ) & " CP | "
End Sub
2022-11-01 22:57:27 +00:00
End Class