System.ComponentModel.Container Class
Information   Base Types   Related Resources

Encapsulates zero or more components.

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

  • System.Object
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (58)Discussions (1908)MembersRotorChanges
    Articles

    Page: 123
    .NET Anatomy - Data Concurrency in ADO.NET, Part III
    DotNetJunkies
    In the two previous articles on this subject we have looked at how the ADO.NET DataSet object contains built-in support for concurrency operations. This functionality helps the developer to build applications that keep users from overwriting each other’s data accidentally. The implementation is open and flexible and so what I will be showing you here can be tailored to your own requirements
    .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.
    A C# Grep Application
    The Code Project
    Presenting a small C# Application which is providing a Grep like functionality under .NET.
    A Tutorial for Constructing a Plug-In Viewer
    MSDN
    Step through the process of implementing a plug-in viewer and integrating it into Analysis Services. Get stub code that enables you to quickly write a plug-in viewer into Analysis Services.
    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.
    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.
    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.
    BUG: Focus on a Control That Does Not Support the CausesValidation Property Suppresses Validation of Unvalidated Controls in the User Control
    http://www.kbalertz.com/
    (814350) - The pending validation of the controls in a user control is suppressed if the following conditions are true: There are multiple controls in the user control. -and- In the user control, you move from a control with the CausesValidation property set to...
    Building a Distributed Web Service Using a Strongly-Typed DataSet in C#
    DotNetJunkies
    This is part two of series of articles intended to provide practical background information on design approaches for the .NET platform as well as providing clear explanations of the .NET features it introduces. In the last article in this series, it was described how to create a Web service that consumes another Web service that does not provide its result set in a .NET DataSet, by using the WSDL (Web service description language) which the consumed Web service provides, it is described how to build from th
    Call Unmanaged Code Part 2 - Marshal Class
    C# Help
    Call Unmanaged Code. Part 1 - Simple DLLImport
    C# Help
    Christian's Code Project Screensaver
    The Code Project
    Well, here it is. I'm sorry that the article is non-existant, it is very late, and I need to go to bed, but I couldn't wait to post the fruit of my labours. I will write a full article in support of my screen saver hopefully tomorrow, but I don't have access to any web space, so I'm going to use Chris's to show you all what I have done so far. The screensaver is written in C#, it simply creates a form that takes up the full screen, and it can only be turned off my pressing a key. This is because when Chris has his XML feed going, I will scroll the latest links from CP in semi transparent text, and moving the mouse will generate a cursor, and clicking on an item will stop the screen saver and launch the URL.
    Developing A C# Vector Drawing Application - Part 1
    C#Today
    Computer drawing applications are one of the most popular applications. Examples of such applications are Corel Draw and FreeHand - Windows users even have one in their system: Microsoft Paint. Chances are you too have used it once in your life. How about developing one? That has probably been done by a few people and the thought of it could scare beginners. This series of three articles by Budi Kurniawan show us that it is not hard at all with C# and the .NET Framework Base Class Library to build a vector based drawing application. Read on.
    Dialog Objects in .NET
    C# Help
    .NET environment has provided us with various classes to use the Dialog objects. This paper explains how to create and use the following dialog boxes in .NET environment:
    Differences Between Visual Basic 6.0 and .NET Controls
    MSDN
    This document outlines the standard controls in Microsoft Visual Basic 6.0 and the equivalent Microsoft .NET controls.
    Drag And Drop in System.Windows.Forms.ListView
    C# Help
    Drag and Drop operations in windows can be achieved using 3 simple events:.DragEnter, DragLeave, DragDrop. The example provided in this articles show you 2 listview items and dragging and dropping the items from one list to the other.
    DriveComboBox
    The Code Project
    Ownerdrawn ComboBox that dispays all logical drives with appropriate icon, volume name and drive letter.
    Extending Explorer with Band Objects using .NET and Windows Forms
    The Code Project
    A lot has been already said about extending Windows and Internet Explorer with Band Objects, Browser Bands, Toolbar Bands and Communication Bands. So if you are familiar with COM and ATL you even might have implemented one yourself. Well, in case your were waiting for an easy way to impress your friends with something like Google Toolbar here it is - the .NET way (or should I say Windows Forms and COM Interop way?). In this tutorial I am going to show how to create any of the mentioned above Band Object types with the help of the BandObject control. Later I will also talk about some implementation details of the BandObject.
    FIX: A System.ArgumentException exception occurs when you try to create a Windows form that inherits from a Windows form that contains a dataset
    http://www.kbalertz.com/
    (821536) - Explains that a System.ArgumentException exception may occur when you try to create a Windows form that inherits from a Windows form that contains a dataset. Requires that you install a hotfix to resolve the problem.
    FIX: A System.ArgumentException exception occurs when you try to create a Windows form that inherits from a Windows form that contains a dataset
    http://www.kbalertz.com/
    (821536) - Explains that a System.ArgumentException exception may occur when you try to create a Windows form that inherits from a Windows form that contains a dataset. Requires that you install a hotfix to resolve the problem.
    FIX: Data Bound User Control Updates Only First Bound Column
    Microsoft Support
    When you try to update more than one column of a table by using a bound user control that has multiple bound properties, only the modified data for the first bound property is updated in the table. You may notice this behavior only for the first row...
    FIX: Data Bound User Control Updates Only First Bound Column
    http://www.kbalertz.com/
    When you try to update more than one column of a table by using a bound user control that has multiple bound properties, only the modified data for the first bound property is updated in the table. You may notice this behavior only for the first row...
    How to call the EnumJobs function from a Visual Basic .NET application
    http://www.kbalertz.com/
    (821769) - Explains how you can use EnumJobs calls to retrieve the status of a print job, the printer information, the job identification, and other parameters that are available in the local print queue.
    How to sum the fields in a Windows Forms DataGrid control and display the calculated totals in a footer by using Visual C# .NET
    http://www.kbalertz.com/
    (842290) - Explains how to calculate the sums of the values in the columns of a Windows Forms DataGrid control and display these sums in a footer. Requires knowledge of Visual C# .NET.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com