eHow launches Android app: Get the best of eHow on the go.
Remove the mystery from computer programming by researching eHow’s expert collection of programmer How Tos. Whether looking for a basic overview of various computer programming languages or attempting to bulk up a software engineering resume by improving your Java skills, eHow can help. Neck deep in damaged binary code and need a helpful shortcut? eHow can show you how to switch the values of two variables without using a temporary variable.
Showing 1-46 of 46 results
VBScript can be written in any text-editing software, even Notepad. Learning the fine art of scripting can be beneficial to your job, especially, if you have to repeat the same processes over and...
Loops are programming devices that specify that a section of a program is to be performed one or more times. Typically they are divided into two categories, "for loops" and "while loops". A "for...
Have you ever wanted to remain anonymous for something? Just as people can chose to be anonymous for various things sometimes in the coding language PL/SQL blocks can be anonymous or unnamed. ...
Without a doubt it can be a significant challenge to understand the programming languages that make computer applications work. However, the good news is that many of the programming languages...
When creating accounting or billing applications, formatting the number to show decimals is part of the process. Visual Basic automatically truncates the zeros that show in numbers after the...
I am a retired computer programmer. I worked for Insurance companies, and recieved a degree in Computer Science. There are many Programming Languages that are avaiable to the Computer Programmer....
Visual Basic, like any other programming language, employs special keywords known as commands. Unlike variables, which are named and defined within your code, command names are defined by the...
Visual Basic is a programming language used mostly for Microsoft Windows applications. Like any programming language, Visual Basic has a distinct syntax. Some basic, popular words are used when...
I am a php programmer and one of the functions that i use the most is var_dump. This will help you to output the contents and information of any variable in your php script. I have found it to be...
Visual Basic is a programming language that is considered one of the easiest to learn for programmers. The language is the closest to natural human language, making the computer "speech" the...
You can use PHP to send queries to a MySQL database. PHP must be configured to use the MySQL client libraries during the installation process. If your web servers support PHP, it most likely has...
PHP Sessions can automatically track a user and drive them to the log-in page if they are not logged in, or drive them to the main page if they go to the login page again. This article describes...
Using file input stream classes in Java gives the programmer the ability to read files and use them for output or configuration of the application. The "InputStream" file class is simple to use...
PHP, as with all other programming languages has a function where you can obtain the length of a string. This comes in handy when you are validating data such as making sure a user has entered...
There will come a time when you simply want to run a query just to see the number of rows being returned and not necessarily the data. For instance lets say you are trying to see if a username...
Dynamic web pages are an efficient way to present data to the user. The web designer needs only to create the initial page that splits the data into segments and add data to the database from...
You could write a series of "IF" statements to drill down through a variable value to act up the condition that you were looking to execute. However the swtich statement is much easier...
ActionScript is the script based language used within Adobe's Flash development software. This scripting language gives developers the ability to make Flash animations more interactive. As with...
Converting an integer to a string is a common practice when programming. For some application processes, it's necessary to manipulate the format. Java makes converting an integer to a string easy...
The language used to program operations in Flash is called ActionScript. This language shares many of the qualities as other programming platforms. Successfully learning to program ActionScript...
As computer literacy grows in our society, programming language has ceased to be the sole domain of sophisticated experts, with many casual programmers taking it up as a hobby. Of the many...
Date functions are especially tricky in programming Web interfaces. With the amount of Web applications growing, some development involves determining the week number programmatically. This is...
Just learning Visual Basic.Net or need a refresher on the “Select Case” statement? You’ve come to the right place. This is a very useful command when you need to set define several choices for a...
PHP is a very popular web based CGI programming language that is used to make websites more interactive. A PHP session is where the website developer can store things locally on the web visitors...
Using null parameters in Javascript allows programmers to define a variable without assigning a value to it. Null values are used in simple variables like integers and strings, and they are used...
Perl scripts are very common in the programming world, especially for programs that must manage large amounts of text, such as indexers. Perl scripts can be very easy or very difficult depending...
In computer programming languages, "null" means nothing. It is different from any other value, including a blank string that actually contains the space character, and it is different from the...
PHP provides several methods to use the contents of a file in a script. They all have certain steps in common. These steps are identified as they appear below. If the input file is not already...
There are many programming languages. Visual basic, SQL and JavaScript use a similar "trim" command that can easily remove leading spaces. Java, C++, C# and several other languages require much...
When writing programs and working with web pages written with Javascript, it is often useful to convert strings to integers. In fact, when you are getting input from the user, you will nearly...
At times, when programming with vbscript, a programmer will want to read an existing environment variable. This can be accomplished by accessing the Windows Script Host via VBScript and making...
The switch statement is used in programming languages such as C, C++, Javascript and Java. When you desire to code a logical string of checking variable conditions and performing different actions...
Subroutines give you the ability to write code that can be used over and over again in a program. This saves you time from writing the same code more than once. In this example I am writing a...
In the C# language, the "for" statement is used to define a block of code that will execute a statement (or a block of statements) as long as a specific condition remains true. This means that, as...
In the Python programming language, a dictionary is a data structure that maps unique keys to values. In other programming languages, however, these data structures are known associative arrays...
To some, Javascript is often viewed as a primitive and not particularly useful programming language. However, Javascript is actually a fully object-oriented language that runs in your web...
The Java programming language allows you to perform bit shift and bitwise operations on the binary numbers that underlie the various data types. Using the bit shift operators, you can perform...
Programmers can't directly access bits in C++, but C++ does offer the use of bit shift operators for performing certain operations on other data types. Whether you're working with byte, integer or...
You can declare a variable in C++ by adding a storage class specifier keyword preceding it. There are five of these keywords: auto, extern, register, static and mutable. Storage class specifiers...
Often, programmers prefer to deal with chunks of data through their memory location instead of directly. C++ pointers are ideal tools for these memory operations. A pointer is a data type that...
Doing basic math and printing the results is the most basic thing you can do in Python. Once you know how to do arithmetic, assign values to variables and print a result, you can do any...
The For Next loop is one of the most useful loops in Excel VBA. It allows you to run the same code a specific number of times--and it's easy to learn.
There’s no way around it: If you want to add interactivity to your Excel VBA programs, you have to use input boxes. Input boxes request and store data from users--and here's how you create one.
DB2 (short for Database 2) is a database management system used for a wide variety of computing platforms. This programming language is used to access tables rather than flat files. More...
Debugging is the process of finding defects in the source code of a program. Often, it's time-consuming and exhausting. Its efficiency depends largely on the skill of the programmer. However,...
C++ offers software developers two philosophies for creating and destroying objects--static and dynamic. In restrictive programs objects should be stored in stack memory. Stack or static memory is...