Subcategories
.NET (0)
ASP / VbScript (0)
C / C++ (41)
Cold Fusion (2)
Delphi (4)
Java (20)
JavaScript (4)
Perl / CGI (4)
PHP (24)
Python (1)
Ruby (3)
Visual Basic (3)
Programming tutorialsShowing tutorials 60 to 80 out of 107 Programming tutorials. | |||
|---|---|---|---|
|
ADVERTISMENT |
ADVERTISMENT |
Direct 3D is an API used for displaying applications with rich multimedia content. You can add 2D/3D graphics, video and sound in your application. You can also create 3D engines for video games. Direct Graphics is the portion of API that deals with the graphics of a direct 3D application. It is oriented towards 3D design but it also works well for 2D graphics. In order to use sound you have to use the functions of Direct Sound. Not yet rated with 339 hits Added on: Sep 12, 2008 |
To read some text from the command line you use the Console.Read or Console.ReadLine method implemented in the .net framework. The difference between them is that the Console.Read method reads the next character from the command line, whereas Console.ReadLine reads the next line of characters instead of just a simple character. The Console.Read method returns an integer and should be cast to a char during the input. There is also a special function called Console.ReadKey( Boolean display) which obtains the key that is pressed on the keyboard and if the display parameter is false it depicts it. Not yet rated with 332 hits Added on: Sep 12, 2008 |
Tutorial on how to use PHP and MySQLi. MySQLi stands for MySQL Improved and is a faster, more reliable method of connection.
Rated: |
![]() Fluent Arrays and Strings in PHP An example of how to create a fluent array and string library in PHP.
Rated: |
||
![]() Setting write permission on files in IIS/Windows This tutorial shows how to Avoid the "Permission denied in" IIS while installing a php script or running your own script. This tutorial has step by step instruction with screen shots of how to change read, write, execute permission on scripts. This will help you to avoid write permission errors for script installation, thumbnail script, image manipulation script , file handling script etc. Not yet rated with 210 hits Added on: Aug 29, 2008 |
77y8nzo16eiglyz7 kfryg lonr http://lloywjxna.com lbrbpy wkitap http://evfhacz.com zyixqo cfdh http://opxpvaoxy.com vsvjiqm yukxsdkr http://rfvtrk.com
Rated: |
||
The switch statement offers the programmer the capability to choose a specific block of code from a set of mutually exclusive ones. It is similar but not identical to the if statement. The block of code that will be chosen is not known before the execution of the program. This can be for example due to different windows platform or specific localization settings of each country. Not yet rated with 175 hits Added on: Sep 12, 2008 |
![]() Classes and Object-Oriented Programming in PHP In this tutorial introduce you to the concept of Classes and Objects in PHP. To put it simply, an Object in the context of programming languages is a data structure which can contain any number of variables and functions all held together under a Class name. This Class can then be created in the normal scope of the code and stored inside a new variable, and multiple copies of this same class can be created. This allows for an even greater level of code encapsulation, allowing more complexity to be accessed from simple commands. Not yet rated with 174 hits Added on: Sep 06, 2008 |
||
Serialization is the process of persisting an object to disk. Another application can deserialize your object and it will be in the same state it was before the serialization. This tutorial talks about XML serialization. The namespace containing classes and methods suitable for such a serialization is System.Xml.Serialization. Not yet rated with 173 hits Added on: Sep 12, 2008 |
![]() Beginners Java Tutorial - Part 1 Easy to follow Beginners Java Programming Tutorials. Starting with downloading and installing the correct components including the Java IDE, this tutorial gets you started using easy to follow simple examples. Not yet rated with 173 hits Added on: Nov 20, 2008 |
||
OpenGl is an API similar to direct3D. However, OpenGL (Open Graphics Library) is not supported by Microsoft and is a cross-language, cross-platform API used for writing applications that produce 2d or 3D graphics. Over 300 functions are implemented in this API which can help you draw complex 3D scenes from primitive data such as polygons and triangles. Mesa 3D is an open source library API which is also compatible with the OpenGl protocol. OpenGl aims at two key goals: 1. To present to the programmer a uniform API that hides the complexities of interfacing with different 3D accelerators. 2. To hide the different capabilities of hardware platforms. OpenGL converts primitives into pixels that are depicted on your screen. Primitives can be polygons, triangles or lines. The transformation is accomplished by a graphics pipeline. Not yet rated with 161 hits Added on: Sep 12, 2008 |
C# provides several mechanisms for flow control in a program. The loops in C# allow you to execute a block of code repeatedly, until a certain condition is met. This condition can be the number of repetition, a variable taking a specified value or something completely different. The while loop is a pre-test loop and is used to execute a block of code for a number of times not known before the loop begins. The do..while loop is a post-test loop and is used for the same purposes as the while loop. Not yet rated with 158 hits Added on: Sep 12, 2008 |
||
A C# program can be written either in a text editor or in an integrated development environment (IDE). The later provides access to various other features. In this tutorial we examine the Visual Studio 2008 IDE in order to illustrate various concepts of a C# windows program. Not yet rated with 157 hits Added on: Sep 12, 2008 |
![]() Working with dates and times in PHP When developing more complex PHP sites, especially forums, discussion boards and blogs where date and time functions are important, you’ll regularly encounter situations where you need to display and manipulate values based around the current date and time. PHP includes a range of functions which can help you to easily format and adjust your date and time displays to suit your needs. In this tutorial, we’ll look at some easy ways to display calendar information for your visitors. Not yet rated with 150 hits Added on: Sep 06, 2008 |
||
In a previous tutorial we talked about serialization and the various option for formatting its data output. In this document we will talk about binary serialization. Binary serialization is used for communication between .Net applications and is not a human-readable format. Windows relies on serialization for many important tasks such as remoting and copying items to the clipboard. Not yet rated with 146 hits Added on: Sep 12, 2008 |
A collection of tutorials for the most popular 3D engines including Ogre, Crystal Space and Irrlicht Not yet rated with 145 hits Added on: Dec 06, 2008 |
||
In a previous tutorial we talked about graphics in C# and the .Net environment. In this tutorial we will present the basic steps for drawing graphics. Not yet rated with 142 hits Added on: Sep 12, 2008 |
When defining variables you can choose between scalar number and arrays. Arrays in C# are declared by adding a set of square brackets to the end of the variable declaration. All members of an array must be of the same type. You cannot have different types in an array. Not yet rated with 141 hits Added on: Sep 12, 2008 |
||
Data is most vulnerable when transferred across a network or stored on a disk drive. An attacker with some knowledge and skills can bypass security software and gain access to sensitive data. However, you can use cryptography to your advantage. You can protect your private data by encrypting their information with a key code, only you will know. Not yet rated with 128 hits Added on: Sep 12, 2008 |
A significant advantage of C# when compared to C++ is the memory management capabilities of the C#. The programmer need not worry about memory management; the garbage collector is assigned this operation on the programmer’s behalf. You will probably know that value data types are stored on the stack while reference data types are stored on the managed heap. The stack stores data value types that are not members of objects. Also, in C# it is always the case that if variable a goes into scope before variable b, then b will go out of scope first. For example, if you declare some variables in a method, these variables will go out of scope when the method ends. However, it maybe sometimes that you need to keep these variables long after the method/function ended. This happens for all data declared with the new operator, the reference types. All reference types are stored in the managed heap, which is under the control of garbage collector. Not yet rated with 125 hits Added on: Sep 12, 2008 |
||
» Hardware reviews
SOFTutorials
- » Add a tutorial (and get rewarded)
- » Login
- » Register (3D Kingdom)
- » About/FAQ/Contact
Highest Rated
![]() |
3D Shining Text - Draw 3D lighting text in photoshop ...
Rated: |
![]() |
Fireworks in Photoshop - Draw nice fireworks with Tool Brushes and Blending options. Very easy but n...
Rated: |
![]() |
3D New Year Text in Photoshop - Make 3D text inspired by 20th Century Fox logo. ...
Rated: |
![]() |
Exploding planet in Photoshop - Draw Exploding Earth using tools and filters. ...
Rated: |
Most Popular
![]() |
Improving capture performance in Windows Movie Maker - Easiest way to improve Capture performance in Windows MovieMaker. Follow th...
Rated: |
![]() |
V-ray Glass Material - If you want very realistic render you need to use V-ray Render plugin. In t...
Rated: |
![]() |
Getting Started with PowerPoint - This tutorial describes tasks that you do almost every time you run the pro...
Rated: |
![]() |
The Matrix Raining Code Video Tutorial - Tutorial showing how to create and animate the raining code effect from the...
Rated: |



























