ITQuestionBank.com
 
Search for  
 
Advanced Search
  Home | Add a Link | Modify a Link | Login | Register | New Listings | Most Popular | Top Ranked | Link to Us | Search | Site Map | Privacy Policy

 Categories

 Editors Picks
  • Download CX-310-015 Free Exam Simulator
  • Download CX-310-014 Free Exam Simulator
  • Download SCEA Free Exam Simulator : 310-051
  • VB NET 2005 Training The NET Framework Architecture Part 1
  • Oracle Applications 11i Technical Training
  • MSAS Step by Step Tutorials
  • Oracle 9i Step by Step Tutorials
  • ASP.NET with C# Training
  • Live DataStage Interview Questions
  • SCJP for Java 2 Platform 1.4 CX-310-035 Free Exam Simulator
  • IT Interview Questions
  • IT Experts Online Journal

  • Home : Programming : C#
    Click "Subscribe" if you want to be notified of new or updated links in this category.Subscribe
    C# Listings
    Total:  59Displaying: 31 - 40Pages: << 1 2 3 4 5 6 >>

    Show Sort By

    Logic Game In C#
    Here is a logic game in C#. The ojective of the game is to click the green buttons until they turn red. The code gives examples of how to use windows forms, buttons and LOTS more. /* A little logical game. A little practice with C#. project created on 02/09/2001 at 01:05 Author : Pavel Tsekov */ using System; using System.Windows.Forms; using System.Drawing; class MainForm : Form { private const int BUTTON_COUNT=25; //count of buttons (exact square 16,25,36,49,...)...

    Updated: 03/13/2005

    C# ExoEngine
    Introduction For my fourth year computer graphics course I wrote a little 3D engine using C# and the .NET platform. I decided to go this route as opposed to the C++ route that everyone else took in the course because I wanted to see whether C# lived up to it's hype. Surprising, after writing about 600kB of code in C# it seems like it is a decent language after all and possibly an effective replacement for the C++ even in demanding field of real-time graphics. When I...

    Updated: 03/13/2005

    Namespaces In C#
    This article bring in you to C# Namespaces. MY objectives are as follows: To give the picture what Namespace is. Learn how to implement the "using" directive. Learn to use "alias" directives. Understand what are namespace members.. NEED FOR NAMESPACES : Namespaces allow you to create a system to organize your code. A good way to organize your namespaces is via a hierarchical system. You put the more general names at the top of the hierarchy and get more specific...

    Updated: 03/13/2005

    Message Filtering With C#
    In C# we can filter our application's messages so some of them don't get dispatched. See the example below of how to prevent the user from clicking the Left Mouse button in our application: // created on 20.10.2001 at 18:04 //This example has 2 classes //1. MyFilter, which exposes the IMesageFilter interface //The PreFilterMessage method is overriden for our needs //2. MainForm, which is our main form using System; using System.Windows.Forms; class...

    Updated: 03/13/2005

    Use of DATE Jargon in C#
    Use of Date Jargaon in C#.The following program will use some functions of DateTime class. This is a console based program which shows current months calendar and also provide option for viewing next month,year,previous month,years calendar too. using System; class MyDate { private int Year; private int Month; private static int Day=1; MyDate() { DateTime today=DateTime.Now; this.Year=today.Year; this.Month=today.Month; } public static void Main() { MyDate oCalendar=new...

    Updated: 03/13/2005

    Pointers In C#
    Here is a simple example of how to use pointers using C#. It is short and easy to follow. //Compilation //CSC FileName.CS using System; class Test { unsafe static void WriteLocations() { int *p; int i; i = 10; p = &i; string addr; addr = int.Format((int) p, "X"); //To Format the Pointer to a String Console.WriteLine(addr); Console.WriteLine(*p); *p = 333; Console.WriteLine(i); //Change the Value using Pointer i = *(&i) + 10; Console.WriteLine(i); } static void...

    Updated: 03/13/2005

    C# Mainframe Interface
    This program shows how one can FTP to S/390, submit JCL and execute a DB2 query on a Mainframe all with C#!! Don't forget to make the required changes in the source code. All comments are documented within the code. Download Mainframe.cs

    Updated: 03/13/2005

    New Modifiers in C#
    If you come from C++ or Java background to C#, no wonder that you will notice some strange keywords introduced to this new language. The first reaction will be what are these things for and why were they added ? Specially that, till now people were able to develop programs using the existing languages without problems. Among the set of new keywords added to C# there are new and override modifiers. Although new may not seem that new to you , however its usage as method...

    Updated: 03/13/2005

    WebBroswer In C#
    If you want to write into webbrowser in windows form in C#, you have to make reference MSHTML library and use its interface to do so. The trick is, if you did this in ASP or Visual Basic, you can simply put wb.document.write(sHtml) where wb is WebBrowser a object and sHtml is a string. In .Net it works differently. You can create sample project in VB.6 and load it into VB.NET. It would complains about bad type variable, but will compile and run (surprisingly, if just...

    Updated: 03/13/2005

    Access Registry Using C#
    Access the registry using C#. Find out the system Information. Using this source code. /* I used it find Processor Information and Bios Information*/ using System; using Microsoft.Win32; class reg { static void Main() { RegistryKey hklm =Registry.LocalMachine; hklm=hklm.OpenSubKey("HARDWARE\DESCRIPTION\System\CentralProcessor\0"); Object obp=hklm.GetValue("Identifier"); Console.WriteLine("Processor Identifier :{0}",obp); RegistryKey hklp =Registry.LocalMachine;...

    Updated: 03/13/2005

    C# Listings
    Total:  59Displaying: 31 - 40Pages: << 1 2 3 4 5 6 >>



    Privacy Policy
    14278 Resources Listed in 604 Categories  ~  IT QuestionBank © 2005 -2007