https://www.mediafire.com/file/yvnx087jk5gd53c/Youtube%20Tutorial%20Bind%20Creator.rar
[B]//Created By xCorrey
//Form 1 Coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;
namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if ((textBox1.Text == "") && (textBox2.Text == "") && (textBox3.Text == "") && (textBox3.Text == ""))
{
MessageBox.Show("No Codes have been entered!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Settings.Default.GeneratedCode = ("BIND " + comboBox1.Text + " \"" + textBox1.Text + "\"\nBIND " + comboBox2.Text + " \"" + textBox2.Text + "\"\nBIND " + comboBox3.Text + " \"" + textBox3.Text + "\"\nBIND " + comboBox4.Text + " \"" + textBox4.Text + "\"");
Form Form2 = new Form2();
Form2.Show();
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
[B]//Form 2 coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;
namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
richTextBox1.Text = Settings.Default.GeneratedCode;
}
}
}
https://pastie.org/2080151
Copyright © 2026, NextGenUpdate.
All Rights Reserved.