Postingan

Menampilkan postingan dari Maret, 2021

PBKK - Tugas 3

Gambar
  Currency Calculator Converter 1. buat projek baru 2. Tulislah Code Seperti dibawah ini using System ; using System.Collections.Generic ; using System.ComponentModel ; using System.Data ; using System.Drawing ; using System.IO ; using System.Linq ; using System.Net ; using System.Text ; using System.Threading.Tasks ; using System.Windows.Forms ; using Newtonsoft.Json ; namespace CurrencyConverter { public partial class Form1 : Form { public Form1 () { InitializeComponent(); } private void convertButton_Click ( object sender, EventArgs e) { if (usdRadioButton.Checked == true ) { if ( string .IsNullOrEmpty(inputBox.Text)) { inputBoxLabel.Text = "Insert number in IDR!" ; inputBoxLabel.ForeColor = Color.Red; } else { inputBoxLabel.T...

PBKK - Tugas 2

Gambar
 Simple Application A. Permulaan  1. Install Visual Stuido Microsoft di 2. Buat Project baru Disini saya menggunakan Gtk# dalam pembuatan applikasi karena saya menggunakan MacOS 3. Konfigurasi Project B. Applikasi yang dibuat           1. Hello World Code using Gtk; using System; class Hello {     static void Main()     {         Application.Init();         Window myWin = new Window("Hello World");         myWin.Resize(200, 200);         Label myLabel = new Label();         myLabel.Text = "Hello World!!!!";         myWin.Add(myLabel);         myWin.ShowAll();         Application.Run();     } }   Hasil             2.  Calculator Code using Gtk; using System; public class Calculator {      static decimal...

Tugas1

Gambar
 Tugas 1 - Portofolio Web yang pernah saya buat adalah web minuman jus manggo & avocado saat mata kuliah MPPL. Saya menggunakan Framework Laravel untuk pembuatan aplikasi web tersebut. Anda bisa melihat web saya di link :  http://do-go.herokuapp.com berikut tampilan photo yang telah saya buat