FLOWCHART DAN LISTING PROGRAM



FLOWCHART KULIAH HARI SENIN


 
 


   
Listing prgram :
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 agendaHariSenin
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 masuk = new Form2();
            masuk.Show();
            this.Hide();

           
        }
    }
}




Listing Program :
namespace agendaHariSenin
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void btnview_Click(object sender, EventArgs e)
        {
            if (rbYes.Checked)
            {
                MessageBox.Show("Hello !!! Berikut Adalah Agenda Kuliah Saya pada Hari Senin !! :D ");
                teoMulmed te = new teoMulmed();
                te.Show();
                this.Hide();
            }
            else
            {
                MessageBox.Show("Sorry,, Kamu Tidak Bisa Melanjutkan Ke Halaman Berikutnya !");
                backhome ba = new backhome();
                ba.Show();
                this.Hide();
            }
        }
    }
}

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 agendaHariSenin
{
    public partial class teoMulmed : Form
    {
        public teoMulmed()
        {
            InitializeComponent();
        }

        private void btnnext_Click(object sender, EventArgs e)
        {
            if (rbYes.Checked)
            {
                MessageBox.Show("Saya Masuk TEORI MULTIMEDIA nih di ruang 2.1.. :D");
                prakMulmed te = new prakMulmed();
                te.Show();
                this.Hide();
            }
            else
            {
                MessageBox.Show("Berarti Saya Dapat Istirahat menunggu jam Praktikum Multimedia.. :D");
                prakMulmed te = new prakMulmed();
                te.Show();
                this.Hide();
            }
        }

    }
}


EmoticonEmoticon