eHow launches Android app: Get the best of eHow on the go.

You've Selected
Category
» Computers » Computer Programming remove
clear your selections
Narrow Your Selections

Computer Programming

Computer Programming

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.

Sort by:
Best Match
Most Popular
Newest

Showing 1-50 of 1,745 results

  • How to convert Java TimeZone

    This explains how to correctly use the TimeZone Class in Java applications.

  • How to write Bug Free Code

    Misfortunes that may happen will always happen eventually. That's very true in the field of programming. A bug refers to an error or unexpected behavior of a piece of software. Everybody makes...

  • How to Convert a PHP String to Date

    When working with programming languages, it is common to need to convert an item from one data type to another. There is often a need to convert something a user has provided into a usable...

  • Formatting HTML Tutorial

    HTML, which stands for Hyper Text Markup Language, is a web-based computer programming language used for creating and designing web pages. Although there are a variety of programming languages...

  • Client Server Vs. Web-Based

    Client-Server and Web-based computing are two of the major approaches to dividing business computing problems across multiple computers. As both approaches use clients and servers, there's ample...

  • How to Search Records in VB6

    In a typical application program, record searching is a common feature. It enables the user to simplify the process by allowing the program to filter the results from among hundreds or thousands...

  • How to Install Android SDK with Eclipse

    The Following are the steps to install android 2.0.1 sdk into eclipse. This is the place to start for the first time developer of an android app and is the simplest and easiest way to get started.

  • How to Write a Batch File to Copy a File

    Windows batch files (.bat) are executable files that run commands on a computer. The commands are used by network administrators to manage directories, files and other programs on a user's...

  • How to Create an .Xml File

    XML stands for Extensible Markup Language. This form of computer programming transports and stores data as a text file but does not display it. For the data to display, XML must work in...

  • How to Create a Subfolder in VBS

    Visual Basic Scripting (VBS) is a programming language used to automate processes using plain text files. The files have the .vbs extension, and they are executed when you double-click the file or...

  • How to Make Excel Edit a Word Doc

    Microsoft Excel is a very versatile and powerful spreadsheet. Microsoft Word provides some of the best document creation tools available in a word processor program. Using the two applications...

  • How to Execute Programs With VBS

    Visual Basic Scripting (VBS) is a language used to automate processes on remote machines. The files use the .vbs file extension, and Windows runs them automatically when you double-click the file...

  • How to Explain Metatags

    Metatags help get Web pages indexed by search engines, they're primarily used in computer programming by Web developers. The Internet is populated with resources for a budding Web developer...

  • How to Create a Remote Share in VBS

    Visual Basic Scripting (VBS) is a plain text language that incorporates some of the Visual Basic language. The files are saved to the hard drive with the vbs file extension, so Windows knows to...

  • How to Change a PHP File

    Most of the Internet's webpages are written in PHP, making it the most popular Web development language around. It usually goes hand-in-hand with an SQL database and can get a little confusing for...

  • How to Create a Pass Parameter Query Access in VBA

    Creating parameter queries with Microsoft Access VBA (Visual Basic for Applications) involves using Access's predefined objects, including the QueryDef and Database objects. The query string used...

  • How to Show Text on Rollover

    Showing text when a visitor rolls over a link or image on your website is a great way to share additional information about where a link leads or what an image contains. If you have access to edit...

  • What Is the File Extension PRZ?

    The PRZ (.prz) file extension was commonly used as a graphics extension. It can still be found today, but it is not as widely used as it was when it was first created.

  • How to Open .Jar Files

    The Java Archive (jar) file is used to archive many files into a single file. It is most often used to distribute Java classes and metadata. The .jar file uses a form of the .zip file format to...

  • How to Format XLS File From PHP

    PHP is a programming language used by some dynamic websites to create specialized content. You can use it can be used to access user input, SQL databases and files on the server. PHP can be used...

  • How to Prepare for a Programming Competition

    Programming can be difficult enough when there is a long time frame to complete projects, let alone when you have to cook up a solution in less than an hour during a programming competition. Do...

  • How to Prevent a URL Display on an Address Bar

    When creating ads or pop-ups in a browser, the web developer can hide certain features of the browser window to make it more attractive. One of these options is the URL displayed in the top...

  • How to Learn SQL Stored Procedures

    Structured Query Language, or SQL, is the coding language of database development and administration. Once a database has been built and populated with data, the information stored within can be...

  • How to Create XSL From an XML File

    XSL is a stylesheet language used to format elements created in XML. Therefore, XSL is typically written by hand using a stylesheet editor. XSL is supported by most major Web development tools,...

  • How to Import Information in a Script With Excel 2007

    Visual Basic (VB) scripts offer many ways of importing data into Excel. One of the easiest ways is to use Excel's macro recorder.

  • How to Hide an Address Bar in JavaScript

    JavaScript is a scripting language used in web development. Removing the address bar in a web browser window is used when creating a pop-up. Web developers can remove elements of the web browser...

  • JavaBeans Vs. ActiveX

    ActiveX and JavaBeans have been competitors since the software's inception. Microsoft touts its ActiveX platform for its over-arching control and ability to manipulate an entire operating system,...

  • Background Music HTML Tutorial

    Embedding background music onto a website is easy to do, and the coding will work in any browser. While many novice HTML coders think that putting music onto a site may seem like a hefty task, the...

  • How to Get Keyboard Input in Java

    Capturing keyboard input in a Java console program is fairly straightforward and only requires a few lines of code. Console programs are run in a console window (such as the Windows "Command...

  • How to Write to a Text File From JSP

    Writing to a text file from JSP is just as easy to do as it is in Java. With the proper knowledge of classes and a clear idea of what is desired in the output, using JSP to write a text file is...

  • How to Learn VB Scripts in Excel

    Of the many ways you can learn to automate and extend Microsoft Excel with Visual Basic, one of the most effective is to record your own macro. Then, study the code created by the macro recorder...

  • How to Create an XSL File From XML

    XSL is a markup language that uses XML syntax to define its style-sheet elements. In technical terms, XSL is a "well-formed" XML document, meaning that it conforms to XML rules. This makes it...

  • How to Write a File to Email by PHP

    The contents of a file can be place sent in an email by using the "fread" and "mail" functions. The "fread" function is used to place the contents of the file into a variable. The file must be...

  • How to Convert a Date to a UNIX Timestamp PHP

    The UNIX Timestamp is the time in seconds between January 1, 1970, and any date. The PHP "strtotime" function can be used to convert a date specified as a string into the UNIX Timestamp for that...

  • How to Program for Exponents

    Programming for a positive integer exponent is simple. Just set up a loop that multiplies the base of the exponent by itself and repeat the loop to correspond to the exponent number. The tricky...

  • Computer Science Fundamentals Tutorial

    Computer science is a broad field of study encompassing several disciplines--among them programming; analysis and design; database design and development; computer system architecture. Whatever...

  • How to Get TabPages From TabControl In C#

    This how to explains how to get TabPages from a TabControl in C#

  • How to Write a Web Page Using XML

    The key to creating a Web page using XML is to understand that XML elements must be converted into HTML in order view your XML as a Web page. That's where the XSL transformation (XSLT) language...

  • How to Determine a File Type in PHP

    PHP is a web server programming language used to create dynamic web pages. This language can read user input, SQL databases and individual server files. Determining the file types of user inputted...

  • How to Create an XLS File in PHP

    PHP is a programming language used for designing dynamic Web pages. It is a server-run language that creates an HTML-based page viewed in the Web browser. It is often used to access SQL databases...

  • How to Read Delimited Fields in a File Using PHP

    The PHP "explode" function allows you to separate the data and the delimiter in a delimited file such as a Comma Separated Value (CSV) file. The "explode" function takes two parameters, the...

  • How to Determine If a File Exists in PHP

    To prevent your Web page from refusing to load due to a file error, you should code some verification to see if a file exists in the first place. The PHP library has a function called...

  • How to write a Basic Single Table Select Statement

    This article will demonstrate a full table select, column specific full table select, and column specific filtered table select. It will also show simply how you can expect a most Database...

  • How to Convert Date Format in Transact-SQL

    Converting date formats in Transact-SQL is a trivial task when using the supplied functions for datetime-to-character conversion. For nearly all standard date formats, there is an existing...

  • How to Read the Text Inside of a File Using PHP

    The "fread" function can be used to read the text inside a file. The text can then be placed in a variable that can be printed to the screen or be used by other PHP functions. The file must first...

  • How to Delete a File Using PHP

    The PHP unlink function is used to delete files. The function is called "unlink" because when a file is deleted, it is essentially unlinked from the file system. The unlink function only takes...

  • Classroom Strategies for Computer Classes

    With computers becoming a part of daily life for individuals of all ages, computer classes are requiring classroom strategies that appeal to multiple generations. It's also important to...

  • How to Create a Simple XML File With Elements

    Much like HTML, eXtensible Markup Language, or XML, is a text-based markup language that uses elements and attributes to describe data. If you know how to create Web pages using HTML tags, you are...

  • How to Check if a String Contains Only Alphabet Letters in Visual Basic

    Regular expressions have been widely used in many programming languages to perform text validation and pattern matching. Visual Basic Express Edition now has the functionality to allow the use of...

  • How to Use Openfiledialog in Visual Basic Express

    Visual Basic provides a set of windows controls to perform common user required functionality. One of the components is the OpenFileDialog control. This control is used to select a file to open...

More

Copyright © 1999-2010 eHow, Inc. Use of this web site constitutes acceptance of the eHow Terms of Use and Privacy Policy .   en-US Portions of this page are modifications based on work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License. † requires javascript

Demand Media