eHow launches Android app: Get the best of eHow on the go.
Showing 1-50 of 65 results
The vector class in the C++ Standard Template Library serves as an alternative to the simple array. They are almost as fast as standard arrays, however they contain efficient functions for adding...
Restoring the functionality of a broken program written in C++ involves looking critically at each factor in the program's runtime environment until you isolate the problem. This process moves...
This article primarily focuses on receiving and decoding the the WWVB radio signal, broadcast from Colorado. The information present on this 60khz station contains date and time information...
Have you ever wanted to create a C/C++ program? Well here is your chance to learn how to. In these instructions you will learn how to download, install, and register Microsoft Visual Studio 2008...
Animated avatars are advantageous in that they catch people's eyes. Most Web surfers view a website or a Web page for a few seconds only, and an animated avatar is a sure way of keeping them on...
Sometimes you download programs you wish you hadn't. What you've downloaded may even have a virus or spyware in it. If your computer is acting funny or if you're suspicious of a certain program...
A common problem for commercial application developers is having the registration code cracked of a software project, which enables others to use the software without purchasing it. The standard...
The C Run-time library is obtained by installing Microsoft's Visual C components. Microsoft provides the library free through a download link on its website. The installation files are comprised...
Using the IntersectsWith Method of a Rectangle, you can detect object collisions in Microsoft Visual C#.
Select files and folders with the OpenFileDialog object and the FolderBrowserDialog object in Microsoft Visual C#.
C is an older programming platform that developers use for small shell coding in applications. C is useful for command line operations, scripting, and gaming development. When using C for the...
Connect to a local Access database and display a table in a form in Microsoft Visual C# (C Sharp).
Add computer animation to your program by using a Timer object and the Paint event of a form in Microsoft Visual C#.
This tutorial shows how to create Tic Tac Toe and how to use resource files using QT Creator. If you have any questions or comments, please email me at fdameronut@yahoo.com. Thanks.
Draw strings, squares, rectangles, circles, ellipses, and polygons in Microsoft Visual C#.
Send an email with an attachment from within Visual C# using your Gmail account. This requires the System.Net.Mail namespace for the SmtpClient object and the System.Net namespace for the...
Get the user name, domain name, computer name, and IP address of your computer using the System and System.Net namespaces in C#.
Send an email using the SmtpClient.Send method in the System.Net.Mail namespace in C#.
Read from the Windows registry using the Registry.GetValue method in the Microsoft.Win32 namespace in C#.
A test plan is a detailed hardware or software verification document that provides specifics on how the validator will test all aspects of the hardware or software design. Test plans are test...
Write to the Windows registry using the Registry.SetValue method in the Microsoft.Win32 namespace in C#.
Stdlib.h is a frequently utilized library in the C programming language. The name stdlib stands for Standard Library. Stdlib.h is frequently used in memory pointer allocation which is common in...
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...
Part of providing dynamic software for users is programming content that works well with their operating systems. If your program does not run well with older Windows operating systems, it's good...
A simple coded clock is useful in many potential applications. The ctime library provide a C programmer with many useful functions that allow him to keep track of how many second have passed. Use...
This article explain on how you can use MATLAB function from .Net
Here is how you can create a 8-tiered pyramid written in c++. This is written in a compiler called BloodShed Dev. For C++ programs to execute as you expect them to, a compiler is needed. Compilers...
The C programming language was first developed in 1972 by Bell Telephone Laboratories to implement the original version of the Unix operating system. Since its development, C has been used for...
The iPhone is a great environment for software developers wanting to earn a lot in a short period of time. But to do so, you need to learn XCode, the suite of programs supplied by Apple to...
Using Windows Communication Foundation in .Net is a great alternative to standard IIS or XML communication. It doesn't take much to get going either!
File compression in computer programing has made the developer's life a lot easier, because rather than deal with hundreds and hundreds of individual files, icons and pictures, you can use...
Creating computer games and modifications used to be far more difficult than it is today. Fortunately, tools such as photo and level editors make the job of the designer far easier. Unfortunately,...
Creating computer games and modifications used to be far more difficult than it is today. Fortunately, tools such as photo and level editors make the job of the designer far easier. One of the...
If you're an experienced programmer or have some knowledge of Java or C++, it should be simple to create a class in C#. While the mechanism and conventions for doing so are very similar to...
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...
This is a quick easy step by step guide to exporting various formats of audio when digitally editing video using Final Cut Pro software.
Templates used in the C++ programming language are useful for the development of more efficient programs because templates allow you to reuse code. The template acts as a generic function that...
Suppose you want to build a C++ class to represent complex numbers since C++ doesn't include a data type for them. The "Complex" class must handle numbers of type int, float and double. You can...
In a C++ program, if you create object A of class X, you can then obtain the address of A by using the "this" pointer. The address is available as a local variable in the non-static member...
Suppose you want to make a function, Mult, that multiplies two numbers. You can write a separate version for each data type, which is the overloading method, or you can use C++ function templates...
You can overload templated functions like you can normal functions. This way, one function name can handle generic data types and a variable number of parameters, provided that those parameters...
A copy constructor is a special member function inside a class. It accepts a reference to an existing object of the same class type and makes a deep copy of that object. A deep copy not only...
Dates and times have frequent usage in C++ programs. Windows programs use several different time formats: System time, local time, file time, Windows time and MS-DOS time. The Run Time Library of...
Computer users are familiar with the ASCII or Unicode symbols on their screens. In reality, behind the scenes, computers process binary numbers and store files in binary data format. This format...
In C++, you designate a C++ function with the inline keyword to make a request to the compiler to improve the function's performance. Depending on several factors, the compiler may integrate the...
C++ offers three levels of data access control inside a class. Private data isn't accessible by non-member functions or outside classes. But sometimes you need to access this data in a program, so...
A class is a data structure that contains related data and functions and is a unit of object-oriented programming. Objects are an instantiation of a class and share the same properties although...
Function overloading in C++ allows more than one function to have the same name. The issue of which function to call is resolved when compiling the program using the input parameter list which...
The main function is the entry point for any C++ program and is generally the first code that is executed when the program is run. However, global objects with constructors may execute...
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...