.NETGURU
System.Drawing.Point Structure
Information   Base Types   Related Resources

Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.

  • Namespace: System.Drawing
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: System.Drawing.dll

  • System.ValueType
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (93)Discussions (1157)MembersRotorChanges
    Articles

    Page: 1234
    A Calculator using C#
    The Code Project
    This is basic Calculator program written in C# which makes use of thevarious Windows Form controls.
    .NET Remoting ( A Simple Approach)
    C# Help
    .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than creating a WebService. In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity i have used the NorthWind database that is packed with the installation of the Microsoft SQL Server.
    .NET Remoting - The Interface Approach
    C# Help
    In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine.
    2D Poligon Drawer-Animator
    The Code Project
    Draw poligons, manipulate them, and animate them
    A C# Grep Application
    The Code Project
    Presenting a small C# Application which is providing a Grep like functionality under .NET.
    A Docking Control That Can Be Dragged And Resized by the User
    The Code Project
    One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form. Now I could attach a Control (or more likely a composite control by deriving from UserControl) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    Accessing Oracle Database
    C# Corner
    This source code shows you how to connect to an oracle database and do operations such as select, insert, update and delete.
    Adding a Control to a Form Programmatically
    C# Corner
    In this article I explain how to Add a control to a form programmatically. This is useful for developer who is not using VS.NET IDE.
    Adding Controls to Windows Forms at Runtime
    C# Corner
    The example consists of one class named Form1 and has one Button and one TextBox. When the user clicks on the "Add Button" button, a button will be created and added to the form with MouseEnter, MouseLeave and MouseClick events. When the user hovers over the new button, it's BackColor changes, and when the user clicks the new button, the textbox displays it's name.
    Adding Help To Applications
    C# Help
    With Help class, our applications can display either HTMLHelp or Win32 Help. Help class has 3 main static methods : ShowHelp(), ShowHelpIndex() and ShowPopup(). In this article, I will show how to use these methods.
    An Overview Of Link Label In C#
    C# Help
    The LinkLabel control exhibits links to other objects, such as files or Web pages. Class LinkLabel is derived from class Label and therefore inherits all of class Label’s functionality. A LinkLabel looks as underlined text. When the mouse moves above the link, the pointer modify to a hand. This is alike to the behavior of a hyperlink in a Web page. The link can change color to indicate whether the link is new, visited or active.
    Array Types in .NET
    MSDN
    Arrays are mechanisms that allow you to treat several items as a single collection. The Microsoft® .NET Common Language Runtime (CLR) supports single-dimensional arrays, multidimensional arrays, and jagged arrays (arrays of arrays). All array types are implicitly derived from System.Array, which itself is derived from System.Object. This means that all arrays are always reference types which are allocated on the managed heap, and your app's variable contains a reference to the array and not the array itself.
    ASP.NET Naughts and Crosses
    C# Corner
    This article demonstrates the basic techniques used to build "ASP.net Noughts & Crosses" (tic tac toe to our American friends). The game uses the native imaging and drawing features of the .net Framework to dynamically generate a JPEG image which displays the game board to the user. Players can take turns to click on the area of the image where they wish to make a move, their move is then submitted to the web server where, if legal, it is drawn onto the board. The application consists of two aspx web pages which each have an associated code behind page.
    Best Practices for Using DTS for Business Intelligence Solutions
    MSDN
    Discover the best practices for using Data Transformation Services (DTS) within the Data Warehousing Framework to capture and present data as Business Intelligence solutions.
    BookStock v2- Samples to Show Simple OleDb.NET Connectivity
    Master C#
    The bookstock example I had previously created for .NET SDK beta1 consisted of 3 samples to show how to perform basic ADO.NET connectivity with a Ms Access 2000 Database and how to Add, View , Edit , Delete records from it. It also demonstrates how to DataBind Textboxes to a DataSet object.
    Boxing And Unboxing C#
    C# Help
    Boxing and unboxing is a essential concept in C#’s type system. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object. Boxing and unboxing enables a unified view of the type system wherein a value of any type can ultimately be treated as an object.
    Building Text to Speech Applications using SAPI 5.1 and C#.
    C# Corner
    The Speech application programming interface (SAPI) considerably decreases the code necessary for an application to use speech recognition and text-to-speech, making speech technology more handy and robust for broad range of applications.
    Building Windows Forms on-the-fly with XML and C#
    C#Today
    In this article, Ashiwn Kamanna takes the concept of an XML driven Form builder a step further than the basics as he discusses how to eliminate the requirement for Form development, not only in an ASP based web application, but also in any potential client of an application. He discusses how to build a Form dynamically in a C# based windows application, and also discusses some object oriented patterns as he walks us through an example.
    C# Calculator Using Windows Forms
    C# Help
    This is a basic calculator program using Windows Forms. You will be able to do mathematical operations like addition,subtraction etc.
    C# From a Java Developer's Perspective
    http://www.25hoursaday.com/
    What follows is an overview of similarities and differences between the language features and libraries of the C# and Java programming languages based on my experience using both languages. All code snippets below were tested on Microsoft's .NET Framework Beta 2 for C# snippets and Javaâ„¢ 2, Standard Edition (J2SEâ„¢) version 1.4 Beta 2 for the Java snippets.
    Color ProgressBar
    The Code Project
    An attractive and fancier ProgressBar
    Common .NET Libraries for Developers
    MSDN
    Identifies and defines many of common namespaces that you will use when developing .NET applications, and provides examples of the most common classes and methods in those namespaces.
    Console Based Windows Form
    C# Help
    Creating a Simple Color Dialog.
    The Code Project
    A simple usage of colordialog.
    Creating Run-time Menus
    C# Corner
    The following example demonstrates how to add menu item and remove menu items at runtime.
    Ad


    Need Dot Net Interview Questions?
    Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
    .Net Projects
    Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
    Free .net Help
    Commission ExamGuru, Inc. and his team for your next bespoke software project
    FogBUGZ
    The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
    Awesome Tools
    If you don't know about these, you're missing out... IT Certification Questions
    IT Interview Questions
    Free Oracle 10g Training
    MCSE Boortcamp
    Cisco Study Guides
    Cheap Study Guides
    Exact Questions
    Dot Net Interview Questions
    Oracle OCP
    Cheap Travel
    Designer Perfumes - Wholesale Prices
    Free Programming Tutorials
     
    ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
     Copyright © ExamGuru, Inc. 2001-2006
    Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification