forked from olliz0r/Ledybot
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Banlist, Reddit Thread Flair Reading
Option to check reddit commenter's flairs for FCs before trading A global banlist available
- Loading branch information
imaboy321
committed
Jan 14, 2017
1 parent
8e69145
commit b453806
Showing
19 changed files
with
13,354 additions
and
201 deletions.
There are no files selected for viewing
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,32 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace Ledybot | ||
{ | ||
public partial class BLInput : Form | ||
{ | ||
|
||
public string input = ""; | ||
|
||
public BLInput() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void btn_Save_Click(object sender, EventArgs e) | ||
{ | ||
input += nud_FC1.Value.ToString().PadLeft(4, '0'); | ||
input += "-" + nud_FC2.Value.ToString().PadLeft(4, '0'); | ||
input += "-" + nud_FC3.Value.ToString().PadLeft(4, '0'); | ||
this.DialogResult = DialogResult.OK; | ||
this.Close(); | ||
} | ||
} | ||
} |
Oops, something went wrong.