• home
  • forum
  • my
  • kt
  • download
  • this:2/4 25records  total:93    start  Previous  Next  Last    goto:
    Functions In C#
    ON: 2008-09-12 12:48:32
    Functions are a must for modern object oriented programming and for visual programs as well. When you click a button on your mouse an event is generated. This event fires a function that is linked to that particular event. Therefore, you need to define several functions that correspond to various actions your code should perform. They are also useful when you need to call a block of code many times in different parts of your program.
    19 times | category: [Introduction to C and Cpp]
    FOR Loops In C#
    ON: 2008-09-12 12:41:26
    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 for loop allows you to repeatedly execute a block of code for a specified number of times.
    3 times | category: [Introduction to C and Cpp]
    Classes With C#
    ON: 2008-09-12 12:40:27
    Classes provide templates that describe various objects, from a customer of a hotel to a new car model. In this tutorial we will talk about some basic concepts regarding their declaration methods and usage.
    7 times | category: [Introduction to C and Cpp]
    A Basic Guide to Functions in C
    ON: 2008-09-12 12:39:37
    Having trouble with user defined functions? Don't know how to create your own function? This tutorial goes over a number of different ways to create your own function. From including it in a header file to creating your own prototype it has it all.
    15 times | category: [Introduction to C and Cpp]
    Hello World with Cpp
    ON: 2008-09-12 12:38:12
    An in-depth look into your first cpp program. Here you'll learn everything you need to go out into the world of programming and write your first cpp program.
    38 times | category: [Introduction to C and Cpp]
    XML Serialization In C#
    ON: 2008-09-12 12:25:19
    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.
    33 times | category: [Miscellaneous]
    Creating Emails In C#
    ON: 2008-09-12 12:24:12
    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
    30 times | category: [Miscellaneous]
    Binary Serialization In C#
    ON: 2008-09-12 12:16:46
    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.
    139 times | category: [Networking]
    Serialization In C#
    ON: 2008-09-12 12:16:06
    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.
    124 times | category: [Networking]
    Sending Emails In C#
    ON: 2008-09-12 12:13:55
    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.
    30 times | category: [Networking]
    Data Encryption In C#
    ON: 2008-09-12 12:12:38
    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.
    154 times | category: [Networking]
    Getting Started with OpenCV
    ON: 2008-09-12 12:05:30
    OpenCV is an open source computer vision library developed by Intel. This library is written in C/C++ and it has lot of very powerful image processing features. This tutorial describes how to install OpenCV and how to configure Visual Studio 2005 to work with OpenCV
    139 times | category: [Programming in C and Cpp]
    SWIG - Way to link High level Programming languages and C/C++ modules
    ON: 2008-09-12 11:48:34
    SWIG(Simplified Wrapper and Interface Generator) is a software development tool , an interface compiler that connects programs written in C and C++ with a variety of scripting languages such as Perl, Python, Ruby, and Tcl and also non-scripting languages such as C#, Common Lisp (CLISP, Allegro CL, CFFI, UFFI), Java, Lua, Modula-3, OCAML and R. . "Scripts" are often treated as distinct from programs which execute independently from any other application.
    8 times | category: [Programming in C and Cpp]
    The Art of Commenting
    ON: 2008-09-12 11:47:37
    When you have to read other peoples code it can be a hard task when their comments suck. Included in this tutorial is tips on improving your commenting style.
    6 times | category: [Programming in C and Cpp]
    Using vector instead of arrays to prevent most of memory leaks
    ON: 2008-09-12 11:44:48
    Most of beginners define arrays of limited size such as:

    int array[100]; // array that can accomodate 100 integer values
    6 times | category: [Programming in C and Cpp]
    Lesson 18: Pointers and Stacks in C
    ON: 2008-09-12 11:43:18
    Today's lesson goes more into details about pointers and their usage as function's arguments. Additional tutorial about stacks in C and C++ is provided. Be sure to read this lesson carefully in order to understand it, since pointers are most important part of C programming language.
    6 times | category: [Programming in C and Cpp]
    Buffer Overflow In Action Tutorial
    ON: 2007-09-05 08:33:25
    This tutorial will show you how to buffer overflow programs in order to change the flow of the application , even if this means executing your own code.
    74 times | category: [Security]
    Base64 Bit Encryption Tutorial
    ON: 2007-09-05 08:27:18
    This is a short but complete tutorial, that will show you how the Base 64 Bit encrypting algorithm works. Includes some code examples in C++ as well.
    91 times | category: [Security]
    XOR Encryption Tutorial
    ON: 2007-09-05 08:23:01
    Learn the basics to xor encryption and write your own program. Some programming knowledge is required such as C/C++ languages.
    153 times | category: [Security]
    Introduction to the C++ Standard Template Library
    ON: 2007-09-04 13:56:18
    This tutorials introduces you to the C++ Standard Template Library (STL) including how to use I/O streams, file streams, string streams, strings, vectors, lists, maps, iterators, and algorithms.
    385 times | category: [Programming in C and Cpp]
    Pointers and References in C++
    ON: 2007-09-04 13:33:06
    The ability to manipulate memory and memory locations directly is part of what makes C and C++ so powerful, so dangerous, and so difficult for beginners. C only has pointers, but C++ uses pointers and references that have a nicer syntax and attempt to be safer. This article will attempt to demystify these concepts in the minds of beginning C/C++ programmers.
    122 times | category: [Programming in C and Cpp]
    Advice and Warning for C
    ON: 2007-09-04 13:32:25
    C is a powerful programming language, but not without risks. Without help, even experienced C programmers can find themselves in trouble, despite "careful" programming, lint filters and good debuggers. And managers of programming projects can discover too late that using C carelessly can lead to delayed and defect-ridden software. This tutor helps avoid problems by illuminating the dangers of C and describing specific programming techniques to make C programming both faster and safer
    24 times | category: [Programming in C and Cpp]
    CD Drive Control
    ON: 2007-09-04 13:31:46
    Enumerates all CD-ROM drives and allows them to be opened and closed at the touch of a button
    60 times | category: [Programming in C and Cpp]
    Random Number Generation
    ON: 2007-09-04 13:21:52
    Generate random numbers with ease, including the main data types: int, float, and double.
    101 times | category: [Programming in C and Cpp]
    ppC++ documentation
    ON: 2007-09-04 13:20:02
    This is a documentation for ppC++ - HTML-embedded C++ preprocessor. This manual is very short and clear, shows all positions of current ppC++ development state. For advanced C/C++ programmers.
    22 times | category: [Networking]
    this:2/4 25records  total:93    start  Previous  Next  Last    goto:

    Category

      Database Related (0)
      Development (5)
      File Manipulation (3)
      Games and Entertainment (10)
      Graphics (15)
      Introduction to C and Cpp (30)
      Miscellaneous (12)
      Networking (5)
      Programming in C and Cpp (10)
      Security (3)