Showing posts with label Sean Vandet. Show all posts
Showing posts with label Sean Vandet. Show all posts

Monday, January 7, 2013

Create Notepad in java programming

Name: Sean Vandet
Major: D4 TMD ITB Batch 6
ID: 49012083

This is the  video show about , How to use notepad that i create in java GUI programming.
Link to youtube:
http://youtu.be/28gHtXUcyio

thank....

Friday, November 30, 2012

Module 10 Basic Window Application Form in Microsoft Visual C++


Name : Sean Vandet
NIM  : 49012083
Major : D4 TMD Batch 6

Module 10 Basic Window Application Form in Microsoft Visual C++

  • change size of the label


link to youtube:

Module 9 Function (Functions without Return Values, Function Return Values, Function with Parameter)


Name : Sean Vandet
NIM  : 49012083
Major : D4 TMD Batch 6

Module 9 Function
  • Functions without Return Values
  • Function Return Values 
  • Function with Parameter


link to youtube:

Module 8 Structure (Struct, union, enumerasi, bit-field, typedef )


Name : Sean Vandet
NIM  : 49012083
Major : D4 TMD Batch 6

Module 8 Structure

  • Struct
  • union 
  • enumerasi
  • bit-field
  • typedef 

link to youtube:

Module 7 ARRAY (Array, Multidimensional Arrays)


Name : Sean Vandet
NIM  : 49012083
Major : D4 TMD Batch 6

Module 7 ARRAY

  • Array  
  • Multidimensional Arrays


link to youtube:

Module 6 ITERATION STRUCTURE (while loop do while loop for loop )

Name : Sean Vandet
NIM  : 49012083
Major : D4 TMD Batch 6

Module 6 ITERATION STRUCTURE

  • while loop  
  • do while loop 
  • for loop



link to youtube:

Wednesday, November 21, 2012

Module 5 Control Structure (if statemment, if-else statement, nest if statement, switch statement)


Dear Lecturer
Name: Sean Vandet
Major: D4 TMD Batch6

Module 5 Control Structure

  • if statement
  • if-else statement
  • if-else if statement or nest if statement
  • switch statement

link to youtube:

Module 4 Operator part 2(Arithmetic, Logic, Bitwise and Ternary)


Dear Lecturer
Name: Sean Vandet
Major: D4 TMD Batch6

Module 4 Operator (part 2)

  • Arithmetic
  • Logic
  • Bitwise
  • Ternary

link to youtube:

Module 3 Operator part 1(Assignment, Unary, Increment and Decrement)


Dear Lecturer
Name: Sean Vandet
Major: D4 TMD Batch6

Module 3 Operator (part 1)

  • Assignment
  • Unary
  • Increment and Decrement

link to youtube:

Module 2 (Data Type, Data Type Conversion, Constant and Variable)


Dear Lecturer
Name: Sean Vandet
Major: D4 TMD Batch6

Module 2

  • Data Type
  • Data Type Conversion
  • Constant 
  • Variable

link to youtube:

Module 1 Beginning microsoft visual C++ 2010 (Beginning MS Visual C++ 2010, Making Program from templates win32 console application, input and output data, Fixing syntax error)

Dear Lecturer
Name: Sean Vandet
Major: D4 TMD Batch6

Module 1 Beginning microsoft visual C++ 2010

  • Beginning MS Visual C++ 2010
  • Making Program from Templates Win32 Console Application
  • Input and Output Data
  • Fixing Syntax Error

link to youtube:

Wednesday, November 7, 2012

Sorting in c programming

Name : Sean Vandet
Major : D4 TMD ITB Batch 6
Sorting in c programming
Sorting used to mean simply as massaging a data in one data set that don't most massage.
Address is the location in memory where the value of the variable is stored.
Pinter is a variable whose value is also an address.

#include <stdio.h>
#include <stdlib.h>
void swapValue (int *tIntA, int *tIntB);

int main() {
    int tListAngka[20] = {1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2};
    int tSwap;
    int tUrutan;
    //repeat and check statement
    do {
        tSwap = 0;
        //repeat tUrutan = 1 end process when tUrutan = 18
        for(tUrutan=0;tUrutan<19;tUrutan++)
        {
            if(tListAngka[tUrutan] < tListAngka[tUrutan+1])
            {
                //one varaible has address and value
                swapValue(&tListAngka[tUrutan], &tListAngka[tUrutan+1]);
                tSwap = 1;
            }            
        }
    } while(tSwap == 1); //exit do()
    //repeat statement for loop
    for(tUrutan=0;tUrutan<20;tUrutan++)
    {
        //tUrutan 0 - 18

        printf("Nilai : %d\n", tListAngka[tUrutan],&tListAngka[tUrutan]);
    }
    system("pause");

}

void swapValue (int *tIntA, int *tIntB)
{
    int tInt = *tIntA;
    *tIntA = *tIntB;
    *tIntB = tInt;
}


link to youtube
http://www.youtube.com/watch?v=W_CURNVZkJQ&feature=youtu.be

Monday, November 5, 2012

Calculate Matrix in c programming

Name : Sean Vandet
Major : D4 TMD ITB Batch 6

Assignment for calculate Matrix in c programming.



link to youtube:
http://www.youtube.com/watch?v=JkgKwTdGWXA&feature=youtu.be
thank...

Friday, November 2, 2012

Copy array to another array by C programming.

Dear Pak

Name : Sean Vandet
Major : TMD ITB Batch 6

Assignment for copy array to another array.


link to youtube:
http://youtu.be/YZnf5L4sQw4

Thursday, November 1, 2012

Draw triangle with C programming

Dear Pak

Name : Sean Vandet
Major : D4 TMD ITB batch 6

We mush to write code step by step like this picture:


Video for write code:

link to youtube:
http://www.youtube.com/watch?v=3_z5Y9-wRIs&feature=youtu.be

Thanks,

Monday, October 29, 2012

Calculate volume pyramid and sphere

Name : Sean Vandet
Major : TMD
Program calculate volume pyramid and sphere with C Programming language.
use do-while loop and if-else if statment and break keyword:
 link to youtube:
http://www.youtube.com/watch?v=s28C_RhvQg0&feature=youtu.be
Thank you!

Thursday, October 25, 2012

Competency Progress: Pembahasan Tugas II

Name : Sean Vandet
Major : TMD

First we calculate in () and next we calculate mult, div, mod and than we calculate add and sub


link to the youtube: 
http://www.youtube.com/watch?v=4l39dIhhRjU&feature=youtu.be
Thank you!

Tuesday, October 23, 2012

Competency Progress: Hello TMD and calculate area of tripezium

Dear Dr.
Name: Sean Vandet
Major: Modul1
 

 + print Hello TMD

#include<stdio.h>    //library of input and output standard
#include<stdlib.h>    //library of system("pause")

int main(void)    //method main() for compile the program
{   
    printf("Hello TMD!.\n"); //output on screen

    system("pause"); //pause the system
    return 0;    //return value to user
}


link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be



+ Calculate area tripezium

#include<stdio.h>     //library of input and output standard
#include<stdlib.h>    //library of system("pause")

int main(void)           //main() method for compile the program
{
    float a, b, h, areaTripezium;             //declare variable (float)
    printf("Please enter the number: \n"); //show output on screen
    printf("a is: ");
    scanf("%f",&a);     //input the data from keyboard

    printf("b is: ");
    scanf("%f",&b);

    printf("h is: ");
    scanf("%f",&h);

    areaTripezium = h * (a + b) /2;          //calculate area of Tripezium
    printf("Area of Tripezium is: %f\n", areaTripezium);

    system("pause");   //pause the system
    return 0;               //return value to the user (false)
}


link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be


sorry Dr. that i sand you late because my internet so slow show i attach file it so long time

Friday, October 19, 2012

Competency Progress: How to record screen on your PC?

Dear, Lecturer
Name: Sean Vandet
Major: TMD D4 ITB Batch 6

========
Software:
    - CamStudio
    - XVid Video Codec

========
--Format Video--

REGION
1. Fixed Region
    > unchecked "Fixed Top-Left Corner" & "Drag Corners to Pan"
    > Resolusi: Width x Height = 426 x 240

OPTIONS
1. Video Options
    > Compresor: Xvid MPEG-4 Codec
    > Compressor -> Configure -> Other options -> Encoder -> Unchecked "Display encoding status"
    > Uncheck: Auto Adjust
    > Set Key Frames Every = 20 frames
    > Capture Frame Every = 50 milliseconds
    > Playback Rate = 20 frames/second
2. Cursor Options
    > Cursor Display #
    > Cursor Highlight #
3. Audio Options for Microphone
    > Audio Capture #
    > Recording Format -> 11.025 kHz, mono, 8-bit
    > Interleave every: 100 Milliseconds
    > Unchecked "Use MCI Recording"
4. Pilih: Record audio from microphne
5. Pilih: Enable Autopan

TOOLS
1. Pilih: Video Annotations
    > Klik Kanan -> Video Format -> Resolution = 426 x 240
    > Klik Kanan -> Edit Text: How to use CamStudio?
Link on the youtube:
 http://www.youtube.com/watch?v=WU70rO1pdHc&feature=youtu.be