Senin, 18 Maret 2019

Aplikasi Billing Warnet ceria








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 System.Diagnostics;

namespace WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
        private Stopwatch wkt = null;
        public Form1()
        {
            InitializeComponent();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (textBox1.Text != "")
            {
                wkt = new Stopwatch();
                if (button1.Text == "LOGIN")
                {
                    if (radioButton1.Checked)
                    {
                        label5.Text = "1 jam";
                    }
                    else if (radioButton2.Checked)
                    {
                        label5.Text = "5 jam";
                    }
                    else if (radioButton3.Checked)
                    {
                        label5.Text = "2 jam";
                    }
                    else if (radioButton4.Checked)
                    {
                        label5.Text = "4 jam";
                    }
                    label4.Visible = true;
                    wkt.Start();
                    button1.Text = "Stop";
                    label5.Visible = true;
                    button1.Text = "Stop";
                }
                else if (button1.Text == "Stop")
                {
                    wkt.Start(); if (radioButton1.Checked)
                    {
                        MessageBox.Show("Jumlah tagihan anda sebesar Rp 2000", "Total Tagihan Paket Regular");
                    }
                    if (radioButton2.Checked)
                    {
                        MessageBox.Show("Jumlah Tagihan anda sebesar Rp 9000", "Total Tahihan Paket Hemat");
                    }
                    if (radioButton3.Checked)
                    {
                        MessageBox.Show("Jumlah Tagihan anda sebesar Rp 5000", "Total Tahihan Paket Game 1");
                    }
                    if (radioButton4.Checked)
                    {
                        MessageBox.Show("Jumlah Tagihan anda sebesar Rp 9000", "Total Tahihan Paket Game 2");
                    }
                    wkt.Reset();
                    label5.Visible = false;
                    button1.Text = "LOGIN";
                    textBox1.Text = null;
                    textBox2.Text = "Rp";
                }
            }
            else if (textBox1.Text == "")
            {
                MessageBox.Show("Nama Harus Diisi!!!", "Important Message");
            }

        }








Tidak ada komentar:

Posting Komentar

Aplikasi Resizer Image

 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq...