Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion nppRandomStringGenerator/Forms/ConfigAndGenerate.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion nppRandomStringGenerator/Forms/ConfigAndGenerate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ private async void ButtonGenerate_Click(Object sender, EventArgs e)
};

ButtonGenerate.Enabled = false;
if (!RadioButtonInline.Checked) ButtonCancel.Enabled = true;
//if (!RadioButtonInline.Checked)
ButtonCancel.Enabled = true;

await Task.Run(() => Generator.GenerateStrings());

Expand Down Expand Up @@ -259,12 +260,19 @@ private void RadioButtonInline_CheckedChanged(object sender, EventArgs e)
NumericUpDownQuantity.Maximum = this.Editor.GetLineCount();
NumericUpDownQuantity.Value = this.Editor.GetLineCount();
TextboxSeperator.Enabled = true;

NumericUpDownGUIDQuantity.Enabled = false;
NumericUpDownGUIDQuantity.Maximum = this.Editor.GetLineCount();
NumericUpDownGUIDQuantity.Value = this.Editor.GetLineCount();
}
else
{
NumericUpDownQuantity.Maximum = 4096000;
NumericUpDownQuantity.Enabled = true;
TextboxSeperator.Enabled = false;

NumericUpDownGUIDQuantity.Maximum = 4096000;
NumericUpDownGUIDQuantity.Enabled = true;
}

}
Expand Down Expand Up @@ -359,5 +367,10 @@ private void button1_Click(object sender, EventArgs e)
label20.Text = GuidInfos.FirstOrDefault(c => c.Key == ComboBoxGUIDFormat.Text).Value;
label20.Visible = true;
}

private void bReset_Click(object sender, EventArgs e)
{
TextboxSymbols.Text = "!@#$%^&*()_+-=[]{};':,.<>?";
}
}
}
67 changes: 0 additions & 67 deletions nppRandomStringGenerator/ILMerge.props

This file was deleted.

12 changes: 0 additions & 12 deletions nppRandomStringGenerator/ILMergeOrder.txt

This file was deleted.

Loading