TLabel Name: lblHarga Caption: Harga TLabel Name: lblPPN

Slides:



Advertisements
Similar presentations
The Important Thing About By. The Important Thing About ******** The important thing about ***** is *****. It is true s/he can *****, *****, and *****.
Advertisements

Naredba If..Then..Else... Procedure TForm1.Button1Click ( SEnder: Tobject ); Var x, y, Max : Integer; Begin x := StrToInt ( Edit1.Text ); y := StrToInt.
Generalized De Morgan’s Theorem Lecture L5.4 Section 5.1.
Total Item Price: $ Dollars. Website: Price: $60.00.
Color on Computers. Bits and Bytes Bit: a single piece of yes/no or 0/1 data Two bits can code 4 items (00, 01, 10, 11) Three bits = 8 (000, 001, 010,
 decimals/cc-7th-fracs-to-decimals/v/converting-fractions-to-decimals-example.
TABLES AND VALUES Section 1.5. Open Sentence Equation.
TRAFFIC JAM. RULE OF GAME Instructions Horizantal cars can only move left or right and vertical cars can only move up or down.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
 In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached.  PHP Loops :  In.
Word Processor Version.2. Methods Visual Basic is –Object Oriented –Event Driven Objects –Properties –Methods.
In order to create the program you need: 1 Radiogroup 2 labels 8 radiobuttons 1 Tpanel 1 Timage.
Delphi first steps. How to create a project Open – File – New – VCL Forms Application.
# 1# 1 Nested If Statements in VBA What is a compound condition that we evaluate? What is a Nested If statement? How do we use ElseIf? CS 105 Spring 2010.
Puzzle Pieces for PowerPoint. Blue Puzzle Piece Title You can edit this text. You can edit this text. You can edit this text. You can edit this text.
Windows Programming, C.-S. Shieh, KUAS EC, Chapter 2 Application Design Flow.
Visual Basic 6 Programming Decide how many variables you need by looking at this form. There is one textbox for input and there are 3 labels for output,
‘Tirgul’ # 5 Enterprise Development Using Visual Basic 6.0 Autumn 2002 Tirgul #5.
Identities, Contradictions and Conditional Equations.
IELTS Reading Test Introduction True or False?. The test lasts 60 minutes. – True.
COLOURS START.
Presentation Title Subtitle if needed Presenter Name Date
Safety Colors Quiz.
Snowman Glyph Mrs. Bigler.
Title of Your Research Heading 3 Heading 6 Heading 4 Heading 1
How To Add Titles, Captions And Credits In Windows Movie Maker
An experiment in organizational improvement
Pemrograman Database Delphi & MySQL
Resistors (466) Chapter 14.
Puzzle Pieces for PowerPoint
Day 11 5/24/11 Topic: Vision and Color
Chemical or Physical Change.
Colors.
Because you know who said let there be light…
How to Start This PowerPoint® Tutorial
Repeated percentages Example: Due to inflation, prices increase by 5% per year. An item costs £12 now. What will it cost in 2 years time? After 1 year.
Input and Output Interfaces
Simplify Expressions 34 A number divided by 3 is 7. n ÷ 3 = 7.
1-2 Mapping North Carolina
Color of m&m's in One 1.69 Oz. Bag
Name: _______________________________
مقالات إدارية حبيبات القهوة!!!! مبيعات قطاع الأعمال - الأحساء
Chi-Square - Goodness of Fit
Average Number of Photons
Percent %.
Fractions 1/2 1/8 1/3 6/8 3/4.
Solution Solution Checking Solutions of Inequalities
Price Elasticity Using Coffee Example
The University of Toledo // 2
1.6 Relations and Functions
Can I color yellow?. Can I color yellow?
Safety Colors Quiz.
TITLE Authors Institution
Part 3 Saving (without the Save button)
What Color is it?.
THIS IS YOUR PRESENTATION TITLE Author(s): Affiliation:
THIS IS YOUR PRESENTATION TITLE Author(s): Affiliation:
SECTION 2-4 : SOLVING EQUATIONS WITH THE VARIABLE ON BOTH SIDES
This is an example text. Go ahead and replace it with your own text.
The University of Toledo // 2
Chapter Name University Name Philanthropy and service projects
CSC1401 Manipulating Pictures 2
Variables and Equations
PLACE YOUR “NOT WAVING BUT DROWNING” ASSIGNMENT IN THE BLUE BOX.
Chapter Name University Name Philanthropy and service projects
Color Box Button - Gray Type : object Type : object Type : object
What Can You Observe About Stars?
CHAPTER FOUR VARIABLES AND CONSTANTS
Let’s Learn the Basic Colors
THIS IS YOUR PRESENTATION TITLE Author(s): Affiliation:
Presentation transcript:

TLabel Name: lblHarga Caption: Harga TLabel Name: lblPPN Caption: PPN 10% Tlabel Name: lblTotal Caption: Harga+PPN TEdit Name: edtHarga Text: ‘’ Enable: True TEdit Name: edtPPN Text: ‘’ Enable: False TEdit Name: edtTotal Text: ‘’ Enable: False TButton Name: btnExit Caption: Exit TForm Name: formMain Caption: Hitung PPN

Deklarasi variable

TEdit Name: edtGross Text: ‘’ Enable: True TEdit Name: edtPercent Text: ‘’ Enable: True TEdit Name: edtNet Text: ‘’ Enable: False TButton Name: btnExit Caption: Exit TForm Name: formMain Caption: Gross/Net Price

GrossValue StrToFloat Percentage StrToInt PercValue NetValue (GrossValue*Percentage)/100 NetValue GrossValue - PercValue FloatToStr

TButton Name: btnOpen Caption: Open Form TRadioGroup Name: rgColor Caption: Color Items: Yellow Blue Gray ItemIndex: 0 TButton Name: btnExit Caption: Exit