Assalamu`alaikum Wr Wb
Disini saya gusti amasta akan share sedikit ilmu yang sudah saya dapatkan tentang tugas laporan praktikum saya yaitu membuat aplikasi strings menggunakan program C#
Oke yang pertama kali kita lakukan adalah kita harus menginstal dulu Microsoft Visual Studio Ultimate 2012, setelah itu kita buka. Berikut adalah langkah-langkah:
1. Kita klik new project
2. Setelah itu akan muncul menu seperti yg dibawah ini. Kita pilih Windows Form Application lalu kita tulis nama project kita dan klik OK.
3. Lalu akan muncul Form seperti Berikut.
4. Design form seperti berikut atau sesuat selera, lalu klik form load atau form untuk pengkodingan pada form
namespace praktikum_String
{
public partial class Form1 : Form
{
string example, example1;
public Form1()
{
InitializeComponent();
}
private void insert_Click(object sender, EventArgs e)
{
example = labelExample.Text;
int x =Convert.ToInt16(textBox3.Text);
string y=Convert.ToString(textBox5.Text);
textBox4.Text = example.Insert(x,
y);
}
private void generate_Click(object sender, EventArgs e)
{
example = labelExample.Text;
example1 = label3.Text;
textBox1.Text = example;
textBox2.Text = example1;
}
private void remove_Click(object sender, EventArgs e)
{
example = labelExample.Text;
int x = Convert.ToInt16(textBox3.Text);
int y = Convert.ToInt16(textBox5.Text);
textBox4.Text = example.Remove(x,
y);
}
private void upper_Click(object sender, EventArgs e)
{
example = labelExample.Text;
textBox4.Text = example.ToUpper();
}
private void lower_Click(object sender, EventArgs e)
{
example = labelExample.Text;
textBox4.Text = example.ToLower();
}
private void join_Click(object sender, EventArgs e)
{
string[] x = { "My -
String" };
textBox4.Text = string.Join("-", x);
}
private void split_Click(object sender, EventArgs e)
{
string[] z = example.Split();
textBox4.Text = string.Join(" dan ", z);
}
private void trim_Click(object sender, EventArgs e)
{
textBox4.Text = example.Trim();
}
private void awal_Click(object sender, EventArgs e)
{
example1 = label3.Text;
int awal = example1.IndexOf("ring",10);
textBox2.Text =
example1.Substring(awal);
}
private void akhir_Click(object sender, EventArgs e)
{
example1 = label3.Text;
int akhir = example1.LastIndexOf("ring", 22);
textBox2.Text =
example1.Substring(akhir);
}
private void replace_Click(object sender, EventArgs e)
{
example1 = label3.Text;
string re = example1.Replace("ring", "cincin");
textBox2.Text = re;
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = " ";
textBox2.Text = "";
textBox5.Text = "";
textBox3.Text = "";
textBox4.Text = "";
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
}
}
7. Kemudian klik start.
Mungkin ini saja yg dapat saya sampaikan, jika ada kesalahan atau kekurangan saya minta maaf karena saya manusia yg tidak luput dari kesalahan :D
Terimakasih semoga bermanfaat.
Wassalamu`alaikum Wr Wb.
Tidak ada komentar:
Posting Komentar