Subcategories
.NET (0)
ASP / VbScript (0)
C / C++ (40)
Cold Fusion (2)
Delphi (2)
Java (18)
JavaScript (4)
Perl / CGI (1)
PHP (22)
Python (1)
Ruby (3)
Visual Basic (3)
Programming tutorialsShowing tutorials 0 to 20 out of 96 Programming tutorials. | |||
|---|---|---|---|
|
ADVERTISMENT |
ADVERTISMENT |
77y8nzo16eiglyz7 kfryg lonr http://lloywjxna.com lbrbpy wkitap http://evfhacz.com zyixqo cfdh http://opxpvaoxy.com vsvjiqm yukxsdkr http://rfvtrk.com Not yet rated with 16 hits Added on: Oct 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 34 hits Added on: Sep 12, 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 26 hits Added on: Sep 12, 2008 |
Sometimes is necessary to hold more than one object in your program as an object, a part, of a bigger collection. For example, one might want to store information about each book in his possession. So, a collection which represents these books must be defined. The C# language and the .Net environment offer you numerous techniques for implementing these kinds of collections in your code. One of those techniques is by using a collection structure. Not yet rated with 24 hits Added on: Sep 12, 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 31 hits Added on: Sep 12, 2008 |
Every self-respected programmer should include exception handling techniques. Sometimes your application will generate an error. Regardless of who was responsible for this error, the programmer or the user, it is up to the first to include the necessary exception handling techniques to keep his/her program from crashing. The .Net environment provides useful techniques for avoiding disastrous errors such as try-catch statements and user-defined exceptions. Not yet rated with 18 hits Added on: Sep 12, 2008 |
||
The .Net provides classes for the programmer to be able to work with graphics. This technology is called GDI+ and controls custom drawing on the screen. These classes instruct the graphics device driver to send the appropriate output on the screen. This tutorial is an introduction to the GDI+ technology in order to start drawing simple objects on screen. Not yet rated with 34 hits Added on: Sep 12, 2008 |
A regular expression’s use is for finding substrings in a large string expression. It supports the use of various wild cards and other very useful techniques for performing the required actions. The namespace System.Text.RegularExpressions contains a number of classes associated with regular expressions. Not yet rated with 22 hits Added on: Sep 12, 2008 |
||
![]() Sequential Lists: The Queue and Stack Class Sequential lists are collection of objects that can be entered or extracted in a sequential way. They don’t provide access to objects in the middle on the list. You can only access a specific object each time you extract it. The two classes named “Queue” and ”Stack” which belong to the “System.Collections” namespace provide you with this kind of functionality, each of them in a slightly different way. The Queue class offers you access to the first object on the list, whereas the Stack class offers you access to the last object on the list. By first and last we mean the first and last object that entered the list. So, the Queue class is a First-in, First-out collection(FIFO Collection) whereas the Stack class is a Last-in, First-out(LIFO Collection). In this tutorial you will create and use both classes to see how they behave when entering and extracting data. You will usually work with such collections with temporary and disposable data. For a more permanent use, arrays provide much better functionality. Not yet rated with 27 hits Added on: Sep 12, 2008 |
Many applications need to communicate with other applications to exchange data or store data in the hard disk. The .Net framework has made these tasks quite simple by including the serialization technique, which can convert objects into binary, SOAP(Simple Object Access Protocol ) or XML documents in order to provide a convenient way for storing and transferring information. Besides the three mentioned format types you can also implement custom serialization to take complete control of the serialization output. Not yet rated with 28 hits Added on: Sep 12, 2008 |
||
Multi-core processors are new standards on the user’s hardware. By taking advantage of the multi-processing capabilities of these machines you can achieve significant performance upgrade with some minor changes in your code. When an application does not make use of threading techniques it is wasting valuable resources. This tutorial will cover the basic threading concepts and threading methods and properties. Not yet rated with 22 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 69 hits Added on: Sep 12, 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 68 hits Added on: Sep 12, 2008 |
The process of sending emails is a simple one. However, because of its dependence on many factors things can become complicated. For example, if the server is not responding, the user should be able to choose whether to stop or not. Not yet rated with 27 hits Added on: Sep 12, 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 78 hits Added on: Sep 12, 2008 |
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 117 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 41 hits Added on: Sep 12, 2008 |
E-mail is an extremely popular communication mechanism. The .Net framework has added the System.Net.Mail namespace which provides classes that enable you to easily create and transmit email messages. Messages can include plain text and attachments. In this tutorial we will talk about creating emails. Not yet rated with 44 hits Added on: Sep 12, 2008 |
||
Unauthorized access of sensitive data must be prohibited in a business application. Unauthorized users must not be able to view other people’s information. In a windows program, sometimes it is necessary to provide different information in guests and users. A guest should not be able to see important data of the program’s flow. The authentication methods require the System.Security.Principal namespace. Not yet rated with 43 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 83 hits Added on: Sep 12, 2008 |
||
» Hardware reviews
SOFTutorials
- » Add a tutorial (and get rewarded)
- » Login
- » Register (3D Kingdom)
- » About/FAQ/Contact
Highest Rated
![]() |
Undercar lighting - This Photoshop tutorial will teach you how to create undercar lighting. Thi...
Rated: |
![]() |
Photoshop Tutorials On Rain Showers and Water Drops - Including rain or water drops in a scene can be a nice effect because water...
Rated: |
![]() |
Rainbows, Glows and Light Effects - Lighting effects in Adobe Photoshop are used to add flare and polish to ima...
Rated: |
![]() |
Modeling Audi TT(Video Tutorial) by ..:: infoSOULS.com - Hi, All. A Nice Car Modeling Video Tutorial is now Online. by ..:: infoSOU...
Rated: |
Most Popular
![]() |
V-ray Glass Material - If you want very realistic render you need to use V-ray Render plugin. In t...
Rated: |
![]() |
Improving capture performance in Windows Movie Maker - Easiest way to improve Capture performance in Windows MovieMaker. Follow th...
Rated: |
![]() |
The Matrix Raining Code Video Tutorial - Tutorial showing how to create and animate the raining code effect from the...
Rated: |
![]() |
HOW TO ENHANCE EYES IN PHOTOSHOP - This photoshop tutorial will show you a fast technique to enhance eyes and ...
Rated: |



























