-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bang1338 have mental breakdown again, give me mercy
- Loading branch information
Showing
18 changed files
with
16,308 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Public Class Help | ||
Private Sub Help_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load | ||
Me.CenterToScreen() | ||
End Sub | ||
|
||
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click | ||
|
||
RichTextBox1.Clear() | ||
|
||
RichTextBox1.Text = "How to use:" | ||
RichTextBox1.Text += Environment.NewLine | ||
RichTextBox1.Text += Environment.NewLine + "1. Put config.ini to the place where this program file in here (along with exe file for short)" | ||
RichTextBox1.Text += Environment.NewLine + "2. Run the program, put your name, and generate it." | ||
RichTextBox1.Text += Environment.NewLine + "If you don't have config.ini, simply use P U R E R A N D O M by ticking Checkbox and generate it" | ||
End Sub | ||
|
||
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click | ||
RichTextBox1.Clear() | ||
|
||
RichTextBox1.Text = "How to make config:" | ||
RichTextBox1.Text += Environment.NewLine | ||
RichTextBox1.Text += Environment.NewLine + "In top-left side of a program, press 'ConfigMaker'" | ||
RichTextBox1.Text += Environment.NewLine + "1. Fill all field" | ||
RichTextBox1.Text += Environment.NewLine + "2. Load 'Expected Output' (MUST)" | ||
RichTextBox1.Text += Environment.NewLine + "3. Save the file, and ready to use." | ||
End Sub | ||
|
||
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click | ||
RichTextBox1.Clear() | ||
|
||
RichTextBox1.Text = "Same as this, but this using command line. Faster but not very friendly." | ||
RichTextBox1.Text += Environment.NewLine + "Also this will appear in 1.31" | ||
End Sub | ||
|
||
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click | ||
RichTextBox1.Clear() | ||
RichTextBox1.Text = "YOU ARE GOING TO GITHUB" | ||
|
||
Process.Start("https://github.com/Bang1338/Cookie-Run-Name-Generator/issues") | ||
End Sub | ||
End Class |
Oops, something went wrong.