Postingan

Menampilkan postingan dari April, 2023

ETS PBKK

Gambar
  Membuat Aplikasi Money Converter Menggunakan .NET Desain Figma :  Code : using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) // button convert { double i = double.Parse(textBox1.Text); double converter; if(comboBox1.SelectedItem == "Dollar" && comboBox3.SelectedItem == "Rupiah") { converter = i * 14929; label4.Text = converter.ToString() + " Rupiah"; } if(comboBox1.SelectedItem == "Rupiah" && comboBox3.SelectedItem == "Dollar") ...