mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-22 18:02:16 +00:00
Moving majority functions of apps from TerminalExternalApp into its own separate module and fixing bug on ability to set hostname and username to blank
This commit is contained in:
parent
4beaaa1988
commit
996601e9cc
10 changed files with 177 additions and 138 deletions
|
@ -167,7 +167,8 @@
|
||||||
Case "bc"
|
Case "bc"
|
||||||
If Strings.AvailableFeature(9) = "1" Then
|
If Strings.AvailableFeature(9) = "1" Then
|
||||||
Console.ChangeInterpreter = True
|
Console.ChangeInterpreter = True
|
||||||
AppHost("bc", False)
|
'AppHost("bc", False)
|
||||||
|
BC_Start()
|
||||||
AdvancedCommand = False
|
AdvancedCommand = False
|
||||||
NormalCommand()
|
NormalCommand()
|
||||||
End If
|
End If
|
||||||
|
@ -205,7 +206,8 @@
|
||||||
End If
|
End If
|
||||||
Case "guess"
|
Case "guess"
|
||||||
Console.ChangeInterpreter = True
|
Console.ChangeInterpreter = True
|
||||||
AppHost("guess", False)
|
'AppHost("guess", False)
|
||||||
|
GTN_Start()
|
||||||
AdvancedCommand = False
|
AdvancedCommand = False
|
||||||
NormalCommand()
|
NormalCommand()
|
||||||
'Undeveloped()
|
'Undeveloped()
|
||||||
|
@ -363,7 +365,8 @@
|
||||||
If Strings.AvailableFeature(17) = 1 Then
|
If Strings.AvailableFeature(17) = 1 Then
|
||||||
Console.ChangeInterpreter = True
|
Console.ChangeInterpreter = True
|
||||||
command = RawCommand.Replace("textpad ", "")
|
command = RawCommand.Replace("textpad ", "")
|
||||||
AppHost("textpad", True)
|
TextPad_Start()
|
||||||
|
'AppHost("textpad", True)
|
||||||
AdvancedCommand = False
|
AdvancedCommand = False
|
||||||
NormalCommand()
|
NormalCommand()
|
||||||
End If
|
End If
|
||||||
|
|
2
ShiftOS-TheRevival/MainForms/Console.Designer.vb
generated
2
ShiftOS-TheRevival/MainForms/Console.Designer.vb
generated
|
@ -103,5 +103,5 @@ Partial Class Console
|
||||||
Friend WithEvents InfoBar As TextBox
|
Friend WithEvents InfoBar As TextBox
|
||||||
Friend WithEvents InfoBarTimer As Timer
|
Friend WithEvents InfoBarTimer As Timer
|
||||||
Friend WithEvents ToolBar As TextBox
|
Friend WithEvents ToolBar As TextBox
|
||||||
Friend WithEvents ShortcutHandler As System.ComponentModel.BackgroundWorker
|
Public WithEvents ShortcutHandler As System.ComponentModel.BackgroundWorker
|
||||||
End Class
|
End Class
|
||||||
|
|
|
@ -6,6 +6,7 @@ Public Class Console
|
||||||
Public BadCommand As Boolean 'Detect if it's a bad command or not
|
Public BadCommand As Boolean 'Detect if it's a bad command or not
|
||||||
Public DisplayStory As Integer 'Keep record for displaying the DevX's or other's monologue
|
Public DisplayStory As Integer 'Keep record for displaying the DevX's or other's monologue
|
||||||
Public StoryToTell As String 'Which chapter that you're going to be in
|
Public StoryToTell As String 'Which chapter that you're going to be in
|
||||||
|
Public ShouldChange As Boolean = False 'Indicates if the interpreter should changed to a specific program
|
||||||
Public ChangeInterpreter As Boolean = False 'Default interpreter is Terminal, if it's changed to True, there'll be other program used by Console
|
Public ChangeInterpreter As Boolean = False 'Default interpreter is Terminal, if it's changed to True, there'll be other program used by Console
|
||||||
Public CurrentInterpreter As String 'Shows what program is using Console
|
Public CurrentInterpreter As String 'Shows what program is using Console
|
||||||
Public CurrentDirectory As String 'Current Directory for ShiftOS Explorer
|
Public CurrentDirectory As String 'Current Directory for ShiftOS Explorer
|
||||||
|
@ -16,6 +17,9 @@ Public Class Console
|
||||||
Public ShOSKey As String 'DOSKEY tracking string for ShiftOS
|
Public ShOSKey As String 'DOSKEY tracking string for ShiftOS
|
||||||
|
|
||||||
Private Sub Console_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
Private Sub Console_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
With ShortcutHandler
|
||||||
|
.WorkerSupportsCancellation = True
|
||||||
|
End With
|
||||||
Console_Full()
|
Console_Full()
|
||||||
Cursor.Hide()
|
Cursor.Hide()
|
||||||
InitializeTerminal()
|
InitializeTerminal()
|
||||||
|
|
|
@ -160,6 +160,8 @@
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="API\ConsoleAPI.vb" />
|
<Compile Include="API\ConsoleAPI.vb" />
|
||||||
<Compile Include="API\TerminalAPI.vb" />
|
<Compile Include="API\TerminalAPI.vb" />
|
||||||
|
<Compile Include="TerminalApplications\External\BasicCalculator\App_BC.vb" />
|
||||||
|
<Compile Include="TerminalApplications\External\GuessTheNumber\App_Guess.vb" />
|
||||||
<Compile Include="TerminalApplications\External\Textpad\App_TextPad.vb" />
|
<Compile Include="TerminalApplications\External\Textpad\App_TextPad.vb" />
|
||||||
<Compile Include="TerminalApplications\External\TerminalExternalApps.vb" />
|
<Compile Include="TerminalApplications\External\TerminalExternalApps.vb" />
|
||||||
<Compile Include="Functions\InGame\SystemManager\ColorSystem.vb" />
|
<Compile Include="Functions\InGame\SystemManager\ColorSystem.vb" />
|
||||||
|
|
86
ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb
vendored
Normal file
86
ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb
vendored
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
Module App_BC
|
||||||
|
'Basic Calculator's RAM
|
||||||
|
Public BC_ReadNumbers As Integer
|
||||||
|
Public BC_Numbers1 As String
|
||||||
|
Public BC_Numbers2 As String
|
||||||
|
Public BC_ThriceMoreValue As Integer
|
||||||
|
Public BC_ThriceMoreCount As Integer
|
||||||
|
Public BC_CurrentNumber As String
|
||||||
|
Public BC_Result As Integer
|
||||||
|
Public BC_Operation2 As String
|
||||||
|
|
||||||
|
Public Sub BC_Start()
|
||||||
|
Console.DefaultPrompt = "> "
|
||||||
|
ResetLine("bc (Basic Calcultator)")
|
||||||
|
NewLine("Copyright, Free Software Foundation.")
|
||||||
|
NewLine("ShiftOS port by DevX.")
|
||||||
|
NewLine("This is free software with ABSOLUTELY NO WARRANTY.")
|
||||||
|
NewLine(Nothing)
|
||||||
|
Console.CurrentInterpreter = "bc"
|
||||||
|
Console.ShouldChange = True
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub BC_Calculate()
|
||||||
|
BC_ReadNumbers = 0
|
||||||
|
BC_ThriceMoreValue = 1
|
||||||
|
BC_Numbers1 = Nothing
|
||||||
|
BC_Numbers2 = Nothing
|
||||||
|
BC_Operation2 = Nothing
|
||||||
|
BC_CurrentNumber = Nothing
|
||||||
|
BC_Result = Nothing
|
||||||
|
Dim GetText As String
|
||||||
|
Try
|
||||||
|
Do
|
||||||
|
GetText = command.Chars(BC_ReadNumbers)
|
||||||
|
Select Case GetText
|
||||||
|
Case "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
|
||||||
|
BC_CurrentNumber = BC_CurrentNumber & GetText
|
||||||
|
Case "+", "-", "*", "/", "^"
|
||||||
|
Dim BC_Numbers3 As Integer
|
||||||
|
Select Case BC_ThriceMoreValue
|
||||||
|
Case 1
|
||||||
|
BC_Numbers1 = BC_CurrentNumber
|
||||||
|
BC_CurrentNumber = Nothing
|
||||||
|
BC_Operation2 = GetText
|
||||||
|
BC_ThriceMoreValue = BC_ThriceMoreValue + 1
|
||||||
|
Case >= 2
|
||||||
|
BC_Numbers2 = BC_CurrentNumber
|
||||||
|
BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
||||||
|
BC_Numbers3 = BC_Result
|
||||||
|
BC_Numbers1 = BC_Numbers3
|
||||||
|
BC_Numbers2 = Nothing
|
||||||
|
BC_CurrentNumber = Nothing
|
||||||
|
BC_ThriceMoreValue = BC_ThriceMoreValue + 1
|
||||||
|
End Select
|
||||||
|
BC_Operation2 = GetText
|
||||||
|
Case "."
|
||||||
|
NewLine("Decimals aren't supported yet!")
|
||||||
|
Case Else
|
||||||
|
'BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
||||||
|
End Select
|
||||||
|
BC_ReadNumbers = BC_ReadNumbers + 1
|
||||||
|
Loop
|
||||||
|
Catch ex As Exception
|
||||||
|
BC_Numbers2 = BC_CurrentNumber
|
||||||
|
BC_CurrentNumber = Nothing
|
||||||
|
End Try
|
||||||
|
BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
||||||
|
BC_ThriceMoreValue = Nothing
|
||||||
|
NewLine(BC_Result)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub BC_Counting(FirstNum As Integer, SecondNum As Integer, Operation As String)
|
||||||
|
Select Case Operation
|
||||||
|
Case "+"
|
||||||
|
BC_Result = FirstNum + SecondNum
|
||||||
|
Case "-"
|
||||||
|
BC_Result = FirstNum - SecondNum
|
||||||
|
Case "*"
|
||||||
|
BC_Result = FirstNum * SecondNum
|
||||||
|
Case "/"
|
||||||
|
BC_Result = FirstNum / SecondNum
|
||||||
|
Case "^"
|
||||||
|
BC_Result = FirstNum ^ SecondNum
|
||||||
|
End Select
|
||||||
|
End Sub
|
||||||
|
End Module
|
40
ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb
vendored
Normal file
40
ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
Module App_Guess
|
||||||
|
'This is for GTN's RAM
|
||||||
|
Public TheNumber As Integer = 0
|
||||||
|
Public FreezeText As String
|
||||||
|
|
||||||
|
Public Sub GTN_Start()
|
||||||
|
Console.DefaultPrompt = "Your answer: "
|
||||||
|
NewLine("Guess the Number")
|
||||||
|
NewLine("Guess the correct number between 1 and 50 and you'll get anything between 1 to 10 Codepoints")
|
||||||
|
NewLine("Type 'exit' to terminate this game")
|
||||||
|
Console.CurrentInterpreter = "guess"
|
||||||
|
GTN_GenerateNumber()
|
||||||
|
Console.ShouldChange = True
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub GTN_GenerateNumber()
|
||||||
|
Dim RandNum As New Random
|
||||||
|
TheNumber = RandNum.Next(1, 51)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub GTN_CheckNumber()
|
||||||
|
Dim TheirNumber As Integer = Convert.ToInt32(command)
|
||||||
|
If TheirNumber > 0 And TheirNumber < 51 Then
|
||||||
|
If TheirNumber = TheNumber Then
|
||||||
|
Dim GetCP As New Random
|
||||||
|
Dim GotCP As Integer = GetCP.Next(1, 11)
|
||||||
|
ChangeCP(True, GotCP)
|
||||||
|
NewLine("You are correct!, you got " & GotCP & " Codepoint(s)")
|
||||||
|
NewLine("Guess the new number between 1 and 50.")
|
||||||
|
GTN_GenerateNumber()
|
||||||
|
Else
|
||||||
|
If TheirNumber < TheNumber Then
|
||||||
|
NewLine("Higher!")
|
||||||
|
ElseIf TheirNumber > TheNumber Then
|
||||||
|
NewLine("Lower!")
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Module
|
|
@ -1,43 +1,10 @@
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
|
|
||||||
Module TerminalExternalApps
|
Module TerminalExternalApps
|
||||||
Public ShouldChange As Boolean = False
|
|
||||||
Public KeyInput As Keys
|
Public KeyInput As Keys
|
||||||
'This is for GTN's RAM
|
|
||||||
Public TheNumber As Integer = 0
|
|
||||||
Public FreezeText As String
|
|
||||||
'Basic Calculator's RAM
|
|
||||||
Public BC_ReadNumbers As Integer
|
|
||||||
Public BC_Numbers1 As String
|
|
||||||
Public BC_Numbers2 As String
|
|
||||||
Public BC_ThriceMoreValue As Integer
|
|
||||||
Public BC_ThriceMoreCount As Integer
|
|
||||||
Public BC_CurrentNumber As String
|
|
||||||
Public BC_Result As Integer
|
|
||||||
Public BC_Operation2 As String
|
|
||||||
'TextPad's RAM
|
|
||||||
Public TextPad_FileName As String
|
|
||||||
Public TextPad_TempText As New Timer
|
|
||||||
|
|
||||||
Public Sub AppHost(App As Object, UseToolBar As Boolean)
|
Public Sub AppHost(App As Object, UseToolBar As Boolean)
|
||||||
Select Case App
|
Select Case App
|
||||||
Case "bc"
|
|
||||||
Console.DefaultPrompt = "> "
|
|
||||||
ResetLine("bc (Basic Calcultator)")
|
|
||||||
NewLine("Copyright, Free Software Foundation.")
|
|
||||||
NewLine("ShiftOS port by DevX.")
|
|
||||||
NewLine("This is free software with ABSOLUTELY NO WARRANTY.")
|
|
||||||
NewLine(Nothing)
|
|
||||||
Console.CurrentInterpreter = "bc"
|
|
||||||
ShouldChange = True
|
|
||||||
Case "guess" 'Guess the Number
|
|
||||||
Console.DefaultPrompt = "Your answer: "
|
|
||||||
NewLine("Guess the Number")
|
|
||||||
NewLine("Guess the correct number between 1 and 50 and you'll get anything between 1 to 10 Codepoints")
|
|
||||||
NewLine("Type 'exit' to terminate this game")
|
|
||||||
Console.CurrentInterpreter = "guess"
|
|
||||||
GTN_GenerateNumber()
|
|
||||||
ShouldChange = True
|
|
||||||
'Revisit Later
|
'Revisit Later
|
||||||
'Case "pause" 'Pause function
|
'Case "pause" 'Pause function
|
||||||
' Terminal.TextBox1.ReadOnly = True
|
' Terminal.TextBox1.ReadOnly = True
|
||||||
|
@ -51,25 +18,15 @@ Module TerminalExternalApps
|
||||||
ShiftoriumFX_DisplayPackages()
|
ShiftoriumFX_DisplayPackages()
|
||||||
NewLine(Nothing)
|
NewLine(Nothing)
|
||||||
NewLine("Type any package you want to investigate")
|
NewLine("Type any package you want to investigate")
|
||||||
ShouldChange = True
|
Console.ShouldChange = True
|
||||||
Case "textpad"
|
|
||||||
Console.DefaultPrompt = Nothing
|
|
||||||
Console.TextBox1.Text = Nothing
|
|
||||||
Console.ToolBarUse = True
|
|
||||||
Terminal_CheckFeature()
|
|
||||||
Console.CurrentInterpreter = "textpad"
|
|
||||||
TextPad_CheckExist(command)
|
|
||||||
Console.ToolBar.Text = "TextPad - " & command & Environment.NewLine & "Ctrl-Q Exit | Ctrl-N New | Ctrl-O Open | Ctrl-S Save | F12 Save As"
|
|
||||||
Console.ReleaseCursor = True
|
|
||||||
TextRebind()
|
|
||||||
End Select
|
End Select
|
||||||
If Console.ReleaseCursor = True Then
|
If Console.ReleaseCursor = True Then
|
||||||
'Strings.OnceInfo(5) = Terminal.TrackPos
|
'Strings.OnceInfo(5) = Terminal.TrackPos
|
||||||
'Terminal.TrackPos = Nothing
|
'Terminal.TrackPos = Nothing
|
||||||
End If
|
End If
|
||||||
If ShouldChange = True Then
|
If Console.ShouldChange = True Then
|
||||||
Console.ChangeInterpreter = True
|
Console.ChangeInterpreter = True
|
||||||
ShouldChange = False
|
Console.ShouldChange = False
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
@ -150,96 +107,11 @@ Module TerminalExternalApps
|
||||||
Case "exit"
|
Case "exit"
|
||||||
TerminateApp(Nothing)
|
TerminateApp(Nothing)
|
||||||
Case Else
|
Case Else
|
||||||
BC_ReadNumbers = 0
|
BC_Calculate()
|
||||||
BC_ThriceMoreValue = 1
|
|
||||||
BC_Numbers1 = Nothing
|
|
||||||
BC_Numbers2 = Nothing
|
|
||||||
BC_Operation2 = Nothing
|
|
||||||
BC_CurrentNumber = Nothing
|
|
||||||
BC_Result = Nothing
|
|
||||||
Dim GetText As String
|
|
||||||
Try
|
|
||||||
Do
|
|
||||||
GetText = command.Chars(BC_ReadNumbers)
|
|
||||||
Select Case GetText
|
|
||||||
Case "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
|
|
||||||
BC_CurrentNumber = BC_CurrentNumber & GetText
|
|
||||||
Case "+", "-", "*", "/", "^"
|
|
||||||
Dim BC_Numbers3 As Integer
|
|
||||||
Select Case BC_ThriceMoreValue
|
|
||||||
Case 1
|
|
||||||
BC_Numbers1 = BC_CurrentNumber
|
|
||||||
BC_CurrentNumber = Nothing
|
|
||||||
BC_Operation2 = GetText
|
|
||||||
BC_ThriceMoreValue = BC_ThriceMoreValue + 1
|
|
||||||
Case >= 2
|
|
||||||
BC_Numbers2 = BC_CurrentNumber
|
|
||||||
BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
|
||||||
BC_Numbers3 = BC_Result
|
|
||||||
BC_Numbers1 = BC_Numbers3
|
|
||||||
BC_Numbers2 = Nothing
|
|
||||||
BC_CurrentNumber = Nothing
|
|
||||||
BC_ThriceMoreValue = BC_ThriceMoreValue + 1
|
|
||||||
End Select
|
|
||||||
BC_Operation2 = GetText
|
|
||||||
Case "."
|
|
||||||
NewLine("Decimals aren't supported yet!")
|
|
||||||
Case Else
|
|
||||||
'BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
|
||||||
End Select
|
|
||||||
BC_ReadNumbers = BC_ReadNumbers + 1
|
|
||||||
Loop
|
|
||||||
Catch ex As Exception
|
|
||||||
BC_Numbers2 = BC_CurrentNumber
|
|
||||||
BC_CurrentNumber = Nothing
|
|
||||||
End Try
|
|
||||||
BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2)
|
|
||||||
BC_ThriceMoreValue = Nothing
|
|
||||||
NewLine(BC_Result)
|
|
||||||
End Select
|
End Select
|
||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub BC_Counting(FirstNum As Integer, SecondNum As Integer, Operation As String)
|
|
||||||
Select Case Operation
|
|
||||||
Case "+"
|
|
||||||
BC_Result = FirstNum + SecondNum
|
|
||||||
Case "-"
|
|
||||||
BC_Result = FirstNum - SecondNum
|
|
||||||
Case "*"
|
|
||||||
BC_Result = FirstNum * SecondNum
|
|
||||||
Case "/"
|
|
||||||
BC_Result = FirstNum / SecondNum
|
|
||||||
Case "^"
|
|
||||||
BC_Result = FirstNum ^ SecondNum
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub GTN_GenerateNumber()
|
|
||||||
Dim RandNum As New Random
|
|
||||||
TheNumber = RandNum.Next(1, 51)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub GTN_CheckNumber()
|
|
||||||
Dim TheirNumber As Integer = Convert.ToInt32(command)
|
|
||||||
If TheirNumber > 0 And TheirNumber < 51 Then
|
|
||||||
If TheirNumber = TheNumber Then
|
|
||||||
Dim GetCP As New Random
|
|
||||||
Dim GotCP As Integer = GetCP.Next(1, 11)
|
|
||||||
ChangeCP(True, GotCP)
|
|
||||||
NewLine("You are correct!, you got " & GotCP & " Codepoint(s)")
|
|
||||||
NewLine("Guess the new number between 1 and 50.")
|
|
||||||
GTN_GenerateNumber()
|
|
||||||
Else
|
|
||||||
If TheirNumber < TheNumber Then
|
|
||||||
NewLine("Higher!")
|
|
||||||
ElseIf TheirNumber > TheNumber Then
|
|
||||||
NewLine("Lower!")
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub ShOSKey_InputCommand(lastcommand As String)
|
Public Sub ShOSKey_InputCommand(lastcommand As String)
|
||||||
Console.ShOSKey = lastcommand
|
Console.ShOSKey = lastcommand
|
||||||
End Sub
|
End Sub
|
||||||
|
|
|
@ -1,6 +1,24 @@
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
|
Imports System.ComponentModel
|
||||||
|
|
||||||
Module App_TextPad
|
Module App_TextPad
|
||||||
|
'Public WithEvents TextPad_Shortcut As BackgroundWorker
|
||||||
|
|
||||||
|
'TextPad's RAM
|
||||||
|
Public TextPad_FileName As String
|
||||||
|
|
||||||
|
Public Sub TextPad_Start()
|
||||||
|
Console.DefaultPrompt = Nothing
|
||||||
|
Console.TextBox1.Text = Nothing
|
||||||
|
Console.ToolBarUse = True
|
||||||
|
Terminal_CheckFeature()
|
||||||
|
Console.CurrentInterpreter = "textpad"
|
||||||
|
TextPad_CheckExist(command)
|
||||||
|
Console.ToolBar.Text = "TextPad - " & command & Environment.NewLine & "Ctrl-Q Exit | Ctrl-N New | Ctrl-O Open | Ctrl-S Save | F12 Save As"
|
||||||
|
Console.ReleaseCursor = True
|
||||||
|
TextRebind()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Public Sub TextPad_CheckExist(TxtFileName As String)
|
Public Sub TextPad_CheckExist(TxtFileName As String)
|
||||||
If File.Exists(Console.CurrentDirectory & "\" & TxtFileName) = True Then
|
If File.Exists(Console.CurrentDirectory & "\" & TxtFileName) = True Then
|
||||||
Console.TextBox1.Text = My.Computer.FileSystem.ReadAllText(Console.CurrentDirectory & "\" & TxtFileName)
|
Console.TextBox1.Text = My.Computer.FileSystem.ReadAllText(Console.CurrentDirectory & "\" & TxtFileName)
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
Module Com_Hostname
|
Module Com_Hostname
|
||||||
|
Public NewHostname As String
|
||||||
|
|
||||||
Public Sub Hostname()
|
Public Sub Hostname()
|
||||||
Strings.ComputerInfo(0) = command.Substring(command.LastIndexOf(" ") + 1, command.Length - (command.LastIndexOf(" ") + 1))
|
NewHostname = command.Substring(command.LastIndexOf(" ") + 1, command.Length - (command.LastIndexOf(" ") + 1))
|
||||||
|
If NewHostname = "" Then
|
||||||
|
NewLine("A hostname should not be blank!")
|
||||||
|
Else
|
||||||
|
Strings.ComputerInfo(0) = NewHostname
|
||||||
|
End If
|
||||||
Terminal_AssignPrompt()
|
Terminal_AssignPrompt()
|
||||||
End Sub
|
End Sub
|
||||||
End Module
|
End Module
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
Module Com_Username
|
Module Com_Username
|
||||||
|
Public NewUsername As String
|
||||||
|
|
||||||
Public Sub Username()
|
Public Sub Username()
|
||||||
Strings.ComputerInfo(1) = command.Substring(command.LastIndexOf(" ") + 1, command.Length - (command.LastIndexOf(" ") + 1))
|
NewUsername = command.Substring(command.LastIndexOf(" ") + 1, command.Length - (command.LastIndexOf(" ") + 1))
|
||||||
|
If NewUsername = "" Then
|
||||||
|
NewLine("A username should not be blank")
|
||||||
|
Else
|
||||||
|
Strings.ComputerInfo(1) = NewUsername
|
||||||
|
End If
|
||||||
Terminal_AssignPrompt()
|
Terminal_AssignPrompt()
|
||||||
End Sub
|
End Sub
|
||||||
End Module
|
End Module
|
||||||
|
|
Loading…
Reference in a new issue