aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/Terminal Applications
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-14 20:09:29 +0700
committerEverythingWindows <[email protected]>2022-11-14 20:09:29 +0700
commit8b879eb638cbb842c723b64f53b04d30d931a4f0 (patch)
treec9a58e421c6cf7b8f6e2fb23ef9c69536bd49089 /ShiftOS-TheRevival/Terminal Applications
parent52674dbd4d03161aba9cadb68f09b69fd71b8ecb (diff)
downloadshiftos-therevival-old-8b879eb638cbb842c723b64f53b04d30d931a4f0.tar.gz
shiftos-therevival-old-8b879eb638cbb842c723b64f53b04d30d931a4f0.tar.bz2
shiftos-therevival-old-8b879eb638cbb842c723b64f53b04d30d931a4f0.zip
Moving DoCommand to TerminalAPI, etc.
Diffstat (limited to 'ShiftOS-TheRevival/Terminal Applications')
-rw-r--r--ShiftOS-TheRevival/Terminal Applications/Internal/Com_05tray.vb7
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/Terminal Applications/Internal/Com_05tray.vb b/ShiftOS-TheRevival/Terminal Applications/Internal/Com_05tray.vb
new file mode 100644
index 0000000..70a8b79
--- /dev/null
+++ b/ShiftOS-TheRevival/Terminal Applications/Internal/Com_05tray.vb
@@ -0,0 +1,7 @@
+Module Com_05tray
+ Public Sub _05tray()
+ Dim TempCP As Integer = Convert.ToInt32(Strings.ComputerInfo(2))
+ TempCP = TempCP + 50
+ Strings.ComputerInfo(2) = Convert.ToString(TempCP)
+ End Sub
+End Module