Monday, June 13, 2011

Visual Basic

HTML server controls are of two slightly different types. The HTML elements most commonly used in forms are available as individual HTML server controls, such as HtmlInputText, HtmlInputButton, HtmlTable, and so on. These HTML server controls expose...
READ MORE - Visual Basic

Monday, June 6, 2011

procedure is a block of program code designed to solve common problems

procedure is a block of program code designed to solve common problems. Suppose the pascal programming language known as Writeln procedures, clrscr, textbackground, textcolor, readln, etc.. The invitation to these procedures vary from one procedure to...
READ MORE - procedure is a block of program code designed to solve common problems

Pascal triangle

Pascal triangle shape can be arranged as below: 1 121 1331 14641 15101051 ................ To facilitate understanding of each element of the above can we put in the matrix as follows: - Number 1 in row 1 column 1 - Number 1 in row 2 column 1, number...
READ MORE - Pascal triangle

The data type is a limit value that can be saved

The data type is a limit value that can be saved. In MS-Access there are different kinds of data types include: - Byte - Integer - Text - Date / Time - Number Suppose you want to keep track student's name. Names of the students to like "Rita", "Ahmad...
READ MORE - The data type is a limit value that can be saved

Arithmetic Statement

Arithmetic Statement Unknown 3 (three) pieces of numbers A, B and C. Make a visual basic program to solve the following arithmetic equation: P = A + B Q = B-A X = A + BC R = (A + B) * C S = (A + B) * (A-C) M = A Mod 2 N = B-A + C ^ 2 - user interface...
READ MORE - Arithmetic Statement

Arithmetic operations

Arithmetic operations Arithmetic operation is an operation involving arithmetic operators. Arithmetic Operators in Visual Basic is: - plus (+) - minus (-) - times (*) - for (/) - rank (^) - residual for (mod) Arithmetic operators generally operate...
READ MORE - Arithmetic operations

Array is a single variable that can hold multiple values

Array is a single variable that can hold multiple values​​. Each value stored in a different array index. Arrays are typically used to collect data that can be prepared based on certain numbers. For example, to keep high all the students of Information...
READ MORE - Array is a single variable that can hold multiple values

Converting Decimal to Hexadecimal Visual Basic

Converting Decimal to Hexadecimal Visual Basic Decimal number that is composed of 10 digits: 0,1,2,3,4,5,6,7,8,9, while composed of 16 hexadecimal digits are: 0,1,2,3,4,5,6 , 7,8,9, A, B, C, D, E, F. We note that the first 10-digit hexadecimal number...
READ MORE - Converting Decimal to Hexadecimal Visual Basic

Decimal to Binary Conversion Visual Basic

Decimal to Binary Conversion Visual Basic Decimal digits arranged over 10 pieces ie 0,1,2,3,4,5,6,7,8,9. Because the constituent digits as much as 10 it is called a base 10 number system. How do I get the base 10 number system is converted into binary...
READ MORE - Decimal to Binary Conversion Visual Basic

Binary To Decimal Conversions

Binary To Decimal Conversions Binary number composed of 2 digits ie 0 and 1. In terms of computer programming, the binary number has a significant role because of all the binary code will be represented in binary form. For example, A has the code decimal...
READ MORE - Binary To Decimal Conversions

Determining Prime Numbers Visual Basic

Determining Prime Numbers Visual Basic Prime numbers are numbers which only numbers divisible by 1 and itself. But there are exceptions that number 2 is prime. The dereten primes are: 2,3,5,7,11,13,17, ... For example number 3 is prime because 3 is...
READ MORE - Determining Prime Numbers Visual Basic

Salary Calculation Visual Basic

Salary Calculation Visual Basic Design interface program to calculate the net salary of an employee with some of the following provisions: -an employee has a NIM attribute, name, jenkel, marital status, number of children, class, position. Devise a...
READ MORE - Salary Calculation Visual Basic

Addition operation on the matrix

Addition operation on the matrix There are a variety of operations on matrices such as: - Sum - Reduction - Multiplication - Transpose - Inverse - Etc. the discussion this time will be explained about the sum matrix. A (m, n) is called a...
READ MORE - Addition operation on the matrix

Creating a program in VB 2008 Addition

Creating a program in VB 2008 Addition Finally I can give visual basic programming articles my first 2008. We learn from the most basic first ya friends. This time I want to provide materials on how to program the sum in vb 2008. Well, after you are...
READ MORE - Creating a program in VB 2008 Addition

Toyota Corolla is a smart flamboyant

Toyota Corolla is a smart flamboyant vehicle that has been engineered precisely to present the rider with a feeling of driving a sports car. The frontal of the car has been fashioned with Toyota’s logo, headlamps (with a sharp appearance), grille and...
READ MORE - Toyota Corolla is a smart flamboyant

Sub AutoOpen()

I’d like to discuss using macros to overcome a big limitation with Word’s Autocorrect feature: the expansion of single-character autocorrect entries in words with apostrophes before the last character. Suppose the letter “t” is set to expand into the...
READ MORE - Sub AutoOpen()

Visual Basic Compiler

Visual Basic Compiler programming language. The most common form of output from a Java compiler is Java class files containing platform-neutral Java bytecode. There exist also compilers emitting optimized native machine code for a particular hardware/operating...
READ MORE - Visual Basic Compiler

Sunday, June 5, 2011

Operations on stream (Stream)

Operations on stream (Stream) Basic class I / O Reader, Writer, InputStream, and OutputStream provide only operations I / O is very basic. For example, InputStream class has instance methods public int read () throws IOException to read one byte...
READ MORE - Operations on stream (Stream)

Stream, Reader, dan Writer

Stream, Reader, dan Writer Computer programs can be useful if he could interact with other worlds. Interaction here means input / output or I / O. In this chapter, we will see the input / output on files and network connections (network). In Java, the...
READ MORE - Stream, Reader, dan Writer

example, we're connecting to a local Interbase server

JDBC connection to an Interbase database. In this example, we're connecting to a local Interbase server using the JDBC ODBC bridge driver after setting up Interbase as an ODBC datasource on the local system. // Establish a connection to an Interbase...
READ MORE - example, we're connecting to a local Interbase server

Now all we have to do is close the connection

Now all we have to do is close the connection. Actually we should close all of the instances of Connection, Statement and ResultSet and it's done in reverse order from which they were created: if (rs != null) rs.close(); if (statement != null) statement.close(); if...
READ MORE - Now all we have to do is close the connection

what other tools exists to capture database level data

Both SQL Server and Windows offer a lot of data to help troubleshoot and monitor overall usage and performance for your SQL Server databases. Within SQL Server there are several DBCC commands as well as a lot newly exposed data from the Dynamic Management...
READ MORE - what other tools exists to capture database level data

To setup dual monitors in Ubuntu

 To setup dual monitors in Ubuntu, we need to modify the file called xorg.conf inside of /etc/X11 1. After finished installing Ubuntu, go to your Terminal Window in Applications-Accessories-Terminal, then type the following: sudo cp /etc/X11/xorg.conf...
READ MORE - To setup dual monitors in Ubuntu

Oracle database consists of a collection

An Oracle database consists of a collection of data managed by an Oracle database management system. You can download Oracle Database XE server for Debian, Mandriva, Novell, Red Hat and Ubuntu Linux distributions. First you need to get databases up and...
READ MORE - Oracle database consists of a collection
 
THANK YOU FOR VISITING