program visual c sharp

music

designlah from berikut ini;


















listing program


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;

namespace media_music_plaqyer
{

    public partial class Form1 : Form
    {
        string[] files, paths;

        public Form1()
        {
            InitializeComponent();
        }

        private void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();

        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void axWindowsMediaPlayer1_Enter(object sender, EventArgs e)
        {
         
        }

        private void openToolStripMenuItem_Click(object sender, EventArgs e)
        {
            openFileDialog1.Filter = "audio video file(*.*)|*.*";
            openFileDialog1.Title = "select audio video file";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                files = openFileDialog1.SafeFileNames;
                paths = openFileDialog1.FileNames;
                for (int i = 0; i < files.Length; i++)
                {
                    listBox1.Items.Add(files[i]);
                }
            }


        }

        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            axWindowsMediaPlayer1.URL = paths[listBox1.SelectedIndex];
        }
    }
}

program visual c sharp

calculator 2

designlah from berikut ini;
















listing program

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;

namespace cal2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public static Double a = 0;
        public static Double b = 0;

        public static Double c = 0;
        public static string bil = "0";
        public static string operatornya = "";
        public Double proseshasil(string operatornya)
        {
            switch (operatornya)
            {
                case "bagi": c = a / b;
                    break;
                case "kali": c = a * b;
                    break;
                case "tambah": c = a + b;
                    break;
                default: c = a - b;
                    break;
            }
            return c;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            operatornya = "";
            bil = "";
            a = 0;
            b = 0;
            c = 0;
        }

        private void bkali_Click(object sender, EventArgs e)
        {
            if (a == 0)
            {
                a = Double.Parse(bil);
                operatornya = "kali";
            }
            else
            {
                b = Double.Parse(bil);
                a = proseshasil("kali");
                operatornya = "kali";
            }
            bil = "";
        }

        private void bhasil_Click(object sender, EventArgs e)
        {
            b = Double.Parse(bil);
            this.Hasil.Text = proseshasil(operatornya).ToString();
            bil = "0";
            a = 0;
            b = 0; 
        }

        private void b1_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "1";
            else
                bil = "1";

            this.Hasil.Text = bil;
        }

        private void b2_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "2";
            else
                bil = "2";

            this.Hasil.Text = bil;
        }

        private void b3_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "3";
            else
                bil = "3";

            this.Hasil.Text = bil;
        }

        private void b4_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "4";
            else
                bil = "4";

            this.Hasil.Text = bil;
        }

        private void b5_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "5";
            else
                bil = "5";

            this.Hasil.Text = bil;
        }

        private void b6_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "6";
            else
                bil = "6";

            this.Hasil.Text = bil;
        }

        private void b7_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "7";
            else
                bil = "7";

            this.Hasil.Text = bil;
        }

        private void b8_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "8";
            else
                bil = "8";

            this.Hasil.Text = bil;
        }

        private void b9_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "9";
            else
                bil = "9";

            this.Hasil.Text = bil;
        }

        private void b0_Click(object sender, EventArgs e)
        {
            if (bil != "0" || operatornya == "")
                bil = bil + "0";
            else
                bil = "0";

            this.Hasil.Text = bil;
        }

        private void bc_Click(object sender, EventArgs e)
        {
            a = 0;
            b = 0;
            c = 0;
            bil = "";
            operatornya = "";
            Hasil.Text = "0";
        }

        private void btambah_Click(object sender, EventArgs e)
        {
            if (bil != "")
            {
                operatornya = "tambah";
                if (a == 0)
                {
                    a = Double.Parse(bil);
                }
                else
                {
                    b = Double.Parse(bil);
                    a = proseshasil("tambah");

                }
                bil = "";
            }
        }

        private void bkurang_Click(object sender, EventArgs e)
        {
            operatornya = "kurang";
            if (a == 0)
            {
                a = Double.Parse(bil);
                
            }
            else
            {
                b = Double.Parse(bil);
                a = proseshasil("kurang");
                
            }
            bil = "";
        }

        private void bminus_Click(object sender, EventArgs e)
        {
            double bilMinus = Double.Parse(bil) * -1;
            bil = bilMinus.ToString();
            this.Hasil.Text = bil;

        }

        private void bbagi_Click(object sender, EventArgs e)
        {
            {
                if (a == 0)
                {
                    a = Double.Parse(bil);
                    operatornya = "bagi";
                }
                else
                {
                    b = Double.Parse(bil);
                    a = proseshasil("bagi");
                    operatornya = "bagi";
                }
                bil = "";
            }
        }

        private void bhapus_Click(object sender, EventArgs e)
        {
            int jml = bil.Length;
            if (jml > 0)
            {
                bil = bil.Substring(0, jml - 1);
                this.Hasil.Text = bil;
            }
        }

        private void btitik_Click(object sender, EventArgs e)
        {
            if (bil != "")
                bil = bil + ",";
            else
                bil = "0";
            this.Hasil.Text = bil;
        }
    }
}

program visual c sharp

calculator sederhana

designlah form berikut;















listing program

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;

namespace calculator_sederhana
{
    public partial class Form1 : Form
    {
        private double a1, a2, xhasil = 0;
        private string op="";
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
          
            hasil.Enabled=false;

        }

        private void btntambah_Click(object sender, EventArgs e)
        {
            op = "+";

        }

        private void btnkurang_Click(object sender, EventArgs e)
        {
            op ="-";

        }

        private void btnkali_Click(object sender, EventArgs e)
        {
            op ="*";

        }

        private void btnbagi_Click(object sender, EventArgs e)
        {
            op ="/";

        }
        
        private void btnhasil_Click(object sender, EventArgs e)
        {
            a1 = double.Parse(bil1.Text);
            a2 =double.Parse(bil2.Text);
            switch(op) {
                case "/" : xhasil = a1/a2;
                    break;
                case "*" : xhasil = a1*a2;
                    break;
                case "-" : xhasil = a1-a2;
                    break;
                case "+" : xhasil = a1+a2;
                    break;  
            }
   hasil.Text=xhasil.ToString();

                    
        }
    }
}


program visual c sharp

stuktur kendali

desinglah form berikut ini :















listing program

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;

namespace latihan1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int i;
            for (i = 100; i > 0; i-=5)
            {
                comboBox1.Items.Add(i);
            }
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            double NA = double.Parse(comboBox1.Text);
            if (NA >= 80 && NA <= 100)
                textBox1.Text = "A";
            else if (NA >= 70 && NA <= 79)
                textBox1.Text = "B";
            else if (NA >= 60 && NA <= 69)
                textBox1.Text = "C";
            else if (NA >= 50 && NA <= 59)
                textBox1.Text = "D";
            else if (NA >= 0 && NA <= 49)
                textBox1.Text = "E";
            else
                textBox1.Text = "";

            if (textBox1.Text != "E")
                textBox2.Text = "LULUS";
             else if (textBox1.Text != "")
                textBox2.Text = "GAGAL";

            else
                textBox2.Text = "";

        }
    }
}