Inferno Web Development
  • Forums
  • About
  • Links
  • Login
  • Register
  • Contact

Navigation

  • Forums
  • Image Gallery
  • Links
  • About
  • Contact

Why Register? Contribute articles and tutorials to ID, earn titles, learn from ID programming projects, and advertise your blog in our forums.

  • Forum Community
  • Register Now
  • Write an Article

Related Articles

  • Introduction to MASM32
  • Global Scope
  • PHP IndexOf Key like JavaScript
  • .htaccess Mod Rewrite Tutorial
  • Inferno Development Established

Programming Tutorials

Inferno Development provides quality programming tutorials on C++, C, C# and a variety of web development languages like PHP, JavaScript, and AJAX. Inferno Development is a programming forum with developers that create projects together and write tutorials and articles for software engineers. ID is a great source for Computer Scientists, Web Developers and Computer Engineers; join and become an Inferno Developer today.

Simple C++ DLL Loading a Message Box

Submitted by Baran Ornarli on Mon, 11/17/2008 - 07:02.
  • C++ Win32 API

This tutorial shows you how to create a C++ Win32 DLL (Dynamic Link Library) which you can then use to call functions from that DLL in your main C++ program. I will be calling a MessageBox from the DLL and load it inside my main C++ program using LoadLibrary and GetProcAddress. I will also exchange integers between the DLL and the main program.

»
  • Share Tutorial
  • Add new comment
  • Read more

C++ Program Without Main Function

Submitted by Baran Ornarli on Sun, 11/16/2008 - 10:17.
  • C++

Ever wanted to name your C++ main() function differently? We use a little C++ trick to rename our main() function to InfernoDevelopment().

»
  • Share Tutorial
  • Add new comment
  • Read more

C++ Beginner Programming Video Tutorial

Submitted by Baran Ornarli on Thu, 11/13/2008 - 06:39.
  • C++

In this video, we make a simple guessing game for beginners using C++ and we also explain how to set up your programming environment. This is a very simple tutorial for beginners.

»
  • Share Tutorial
  • Add new comment
  • Read more

PHP Generated Dynamic Images

Submitted by Dylan on Tue, 11/11/2008 - 22:19.
  • PHP

Have you ever seen an image that counts down a date, a signature that displays game ratings, or a little avatar that tells you what browser you are using? These are all examples of dynamic images, usually created with PHP.

In this tutorial, I will be explaining how this is done in PHP, and providing several working code examples.

»
  • Share Tutorial
  • Add new comment
  • Read more

C++ Pthreads API

Submitted by Baran Ornarli on Sun, 11/09/2008 - 23:50.
  • C++

Ever created a multi-threaded application? Using POSIX threads, called Pthreads you can create multi-threaded applications in almost any operating system. Pthreads give you the ability to control threads using C++. In this example, we will create a multi-threaded Matrix Multiplication Application.

»
  • Share Tutorial
  • Add new comment
  • Read more

Beginner C++ Cout Cin Integer

Submitted by Dan Killam on Fri, 11/07/2008 - 06:46.
  • C++

The objective of this basic C++ tutorial is to provide beginners with a simple understanding of the cout and cin functions of C++, while simultaneously providing a guide to one of their first programs. This C++ tutorial will also show you how to set up your environment and your example programs.

»
  • Share Tutorial
  • Add new comment
  • Read more

Singleton C++

Submitted by Baran Ornarli on Mon, 11/03/2008 - 20:28.
  • C++

The Singleton C++ Design Pattern is a C++ design that creates one single instance of a class that can be used throughout multiple files and large projects.

Think of C++ Singleton like a global class that can be accessed at any moment and will be created only once, if it hasn't already been initialized.

»
  • Share Tutorial
  • Add new comment
  • Read more

C++ Volatile Keyword

Submitted by Baran Ornarli on Mon, 11/03/2008 - 06:18.
  • C++

Volatile keyword can be specified for any C++ variable in order to tell the compiler that the variable should not be optimized. I'll show you what this means and why this Computer Engineering secret is very rare to find in any code. It's used in multi-threaded code or embedded system designs.

»
  • Share Tutorial
  • Add new comment
  • Read more

Perfect C++ String Explode Split

Submitted by Baran Ornarli on Sun, 11/02/2008 - 23:25.
  • C++

Ever wanted the perfect explode or split using the C++ std::string class? Where you can split a string based on a delimiter or separator and store the results in a vector? Here's an easy way to do it!

»
  • Share Tutorial
  • Add new comment
  • Read more

C++ Win32 API Simple GUI Wrapper

Submitted by Tomescu Alin on Fri, 10/17/2008 - 21:01.
  • C++ Win32 API

How would you like to write your Windows Graphical (Win32 GUI) software as EASY as this?

MyWindowClass wndClass (hInstance, TEXT("GenericWindowClass"));
MyWindow wnd(hInstance, TEXT("My Window Title"), wndClass.className ());
 
wnd.Create();
wnd.Show();

Easy programming in Win32 isn't it?

»
  • Share Tutorial
  • Add new comment
  • Read more
123next ›last »
Syndicate content
ID Members: 750; Online: 24

Articles

  • General News (1)
  • Web Development (1)
  • PHP (5)
  • JavaScript (1)
  • C# (1)
  • C++ Qt GUI (1)
  • C++ Win32 API (5)
  • C++ (11)
  • MASM32 (1)
  • Photoshop (1)

Popular Tutorials

All time:

  • Website Header with 3D Fold Up / Lift Effect
  • C++ Win32 API Tutorial
  • Introduction to MASM32
  • Perfect C++ String Explode Split
  • .htaccess Mod Rewrite Tutorial

Copyright © Inferno Development 2008. All Rights Reserved.