0% found this document useful (0 votes)
59 views6 pages

ROCHMAT WIDODO/12518244005: /// /// Summary For Form1

This document contains code for a C# Windows Forms application that calculates a job applicant's percentage chance of acceptance based on scores from a psychometric test, physical test, and interview. It defines a Form1 class with properties and methods to display trackbars and textboxes to input scores. When the trackbars are scrolled, event handlers calculate the percentage based on the score ranges and display it in an output textbox. The code also includes comments and initialization of the form components.

Uploaded by

Khoerul Umam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
59 views6 pages

ROCHMAT WIDODO/12518244005: /// /// Summary For Form1

This document contains code for a C# Windows Forms application that calculates a job applicant's percentage chance of acceptance based on scores from a psychometric test, physical test, and interview. It defines a Form1 class with properties and methods to display trackbars and textboxes to input scores. When the trackbars are scrolled, event handlers calculate the percentage based on the score ranges and display it in an output textbox. The code also includes comments and initialization of the form components.

Uploaded by

Khoerul Umam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

ROCHMAT WIDODO/12518244005

#pragma once

namespace tugas1 {

using namespace System;


using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

/// <summary>
/// Summary for Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}

protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::TrackBar^ TBPSIKOTEST;
private: System::Windows::Forms::TrackBar^ TBFISIK;
protected:

protected:

protected:

private: System::Windows::Forms::TextBox^ Input1;


private: System::Windows::Forms::TextBox^ Input2;

private: System::Windows::Forms::Label^ label3;


private: System::Windows::Forms::Label^ label4;
private: System::Windows::Forms::Label^ label5;

private: System::Windows::Forms::Label^ label9;


private: System::Windows::Forms::TextBox^ output;
private: System::Windows::Forms::TextBox^ Input3;
private: System::Windows::Forms::TrackBar^ TBWAWANCARA;
ROCHMAT WIDODO/12518244005
private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code


/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->TBPSIKOTEST = (gcnew System::Windows::Forms::TrackBar());
this->TBFISIK = (gcnew System::Windows::Forms::TrackBar());
this->Input1 = (gcnew System::Windows::Forms::TextBox());
this->Input2 = (gcnew System::Windows::Forms::TextBox());
this->label3 = (gcnew System::Windows::Forms::Label());
this->label4 = (gcnew System::Windows::Forms::Label());
this->label5 = (gcnew System::Windows::Forms::Label());
this->label9 = (gcnew System::Windows::Forms::Label());
this->output = (gcnew System::Windows::Forms::TextBox());
this->Input3 = (gcnew System::Windows::Forms::TextBox());
this->TBWAWANCARA = (gcnew System::Windows::Forms::TrackBar());
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBPSIKOTEST))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBFISIK))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBWAWANCARA))->BeginInit();
this->SuspendLayout();
//
// TBPSIKOTEST
//
this->TBPSIKOTEST->Location = System::Drawing::Point(148, 28);
this->TBPSIKOTEST->Maximum = 100;
this->TBPSIKOTEST->Name = L"TBPSIKOTEST";
this->TBPSIKOTEST->Size = System::Drawing::Size(104, 45);
this->TBPSIKOTEST->TabIndex = 0;
this->TBPSIKOTEST->Scroll += gcnew System::EventHandler(this,
&Form1::trackBar1_Scroll);
//
// TBFISIK
//
this->TBFISIK->Location = System::Drawing::Point(148, 114);
this->TBFISIK->Maximum = 100;
this->TBFISIK->Name = L"TBFISIK";
this->TBFISIK->Size = System::Drawing::Size(104, 45);
this->TBFISIK->TabIndex = 1;
this->TBFISIK->Scroll += gcnew System::EventHandler(this,
&Form1::TB2_Scroll);
//
// Input1
//
this->Input1->Location = System::Drawing::Point(152, 64);
this->Input1->Name = L"Input1";
this->Input1->Size = System::Drawing::Size(100, 20);
this->Input1->TabIndex = 2;
ROCHMAT WIDODO/12518244005
//
// Input2
//
this->Input2->Location = System::Drawing::Point(148, 157);
this->Input2->Name = L"Input2";
this->Input2->Size = System::Drawing::Size(100, 20);
this->Input2->TabIndex = 3;
//
// label3
//
this->label3->AutoSize = true;
this->label3->Location = System::Drawing::Point(149, 13);
this->label3->Name = L"label3";
this->label3->Size = System::Drawing::Size(67, 13);
this->label3->TabIndex = 12;
this->label3->Text = L"PSIKOTEST";
//
// label4
//
this->label4->AutoSize = true;
this->label4->Location = System::Drawing::Point(149, 98);
this->label4->Name = L"label4";
this->label4->Size = System::Drawing::Size(33, 13);
this->label4->TabIndex = 13;
this->label4->Text = L"FISIK";
//
// label5
//
this->label5->AutoSize = true;
this->label5->Location = System::Drawing::Point(149, 201);
this->label5->Name = L"label5";
this->label5->Size = System::Drawing::Size(80, 13);
this->label5->TabIndex = 14;
this->label5->Text = L"WAWANCARA";
//
// label9
//
this->label9->AutoSize = true;
this->label9->Location = System::Drawing::Point(291, 98);
this->label9->Name = L"label9";
this->label9->Size = System::Drawing::Size(59, 13);
this->label9->TabIndex = 18;
this->label9->Text = L"presentase";
//
// output
//
this->output->Location = System::Drawing::Point(273, 114);
this->output->Name = L"output";
this->output->Size = System::Drawing::Size(100, 20);
this->output->TabIndex = 19;
//
// Input3
//
this->Input3->Location = System::Drawing::Point(152, 260);
this->Input3->Name = L"Input3";
this->Input3->Size = System::Drawing::Size(100, 20);
this->Input3->TabIndex = 21;
//
ROCHMAT WIDODO/12518244005
// TBWAWANCARA
//
this->TBWAWANCARA->Location = System::Drawing::Point(152, 217);
this->TBWAWANCARA->Maximum = 100;
this->TBWAWANCARA->Name = L"TBWAWANCARA";
this->TBWAWANCARA->Size = System::Drawing::Size(104, 45);
this->TBWAWANCARA->TabIndex = 20;
this->TBWAWANCARA->Scroll += gcnew System::EventHandler(this,
&Form1::trackBar1_Scroll_1);
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(789, 454);
this->Controls->Add(this->Input3);
this->Controls->Add(this->TBWAWANCARA);
this->Controls->Add(this->output);
this->Controls->Add(this->label9);
this->Controls->Add(this->label5);
this->Controls->Add(this->label4);
this->Controls->Add(this->label3);
this->Controls->Add(this->Input2);
this->Controls->Add(this->Input1);
this->Controls->Add(this->TBFISIK);
this->Controls->Add(this->TBPSIKOTEST);
this->Name = L"Form1";
this->Text = L"PRENSENTASE PENERIMAAN KERJA";
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBPSIKOTEST))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBFISIK))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this-
>TBWAWANCARA))->EndInit();
this->ResumeLayout(false);
this->PerformLayout();

}
#pragma endregion
private: System::Void trackBar1_Scroll(System::Object^ sender, System::EventArgs^ e)
{
//menampilkan nilai input1
Input1->Text=Convert::ToString(TBPSIKOTEST->Value);

//mencari Miufisik
float dina,farah,dona,fifi,galang;
if(TBPSIKOTEST->Value > 25 && TBPSIKOTEST->Value < 50)
{
dina=(TBPSIKOTEST->Value - 25);
dona=dina/25;
output->Text=Convert::ToString(dona);}
else if (TBPSIKOTEST->Value >25 && TBPSIKOTEST->Value <50)
{farah=(25 - TBPSIKOTEST->Value);
fifi=farah/25;
output->Text=Convert::ToString(fifi);}
else if (TBPSIKOTEST->Value < 25 && TBPSIKOTEST->Value >50)
ROCHMAT WIDODO/12518244005
{galang=0;
output->Text=Convert::ToString(galang);}

}
private: System::Void TB2_Scroll(System::Object^ sender, System::EventArgs^ e) {
//menampilkan nilai input2
Input2->Text=Convert::ToString(TBFISIK->Value);

//mencari MiuMuda
float jalu,kiki,lala,kim;
if(TBFISIK->Value < 50)
{jalu=1;
output->Text=Convert::ToString(jalu);}
else if (TBFISIK->Value >50 && TBFISIK->Value <75)
{kiki=(50-TBFISIK->Value);
kim=(kiki/50);
output->Text=Convert::ToString(kim);}
else if (TBFISIK->Value >75)
{lala=0;
output->Text=Convert::ToString(lala);}

}
private: System::Void trackBar1_Scroll_1(System::Object^ sender, System::EventArgs^ e) {
//menampilkan nilai input3
Input3->Text=Convert::ToString(TBWAWANCARA->Value);

//mencari output
float jalu,kiki,lala,kim;
if(TBWAWANCARA->Value < 50)
{jalu=1;
output->Text=Convert::ToString(jalu);}
else if (TBWAWANCARA->Value >50 && TBWAWANCARA->Value
<100)
{kiki=(75-TBWAWANCARA->Value);
kim=(kiki/75);
output->Text=Convert::ToString(kim);}
else if (TBWAWANCARA->Value >100)
{lala=0;
output->Text=Convert::ToString(lala);}
}
};
}
ROCHMAT WIDODO/12518244005

You might also like