| .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 Color Guide in C# |
| C# Help |
|
|
| 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 Default ListItem in a Databound Listbox in ASP.NET |
| 4Guys from Rolla |
| In a previous article I showed how to use databinding to automagically populate an ASP.NET's listbox Web control with just a few lines of code. (If you've not already read the past article, be sure to do so now.) I've received a couple of feedback emails from folks since publishing the article asking how to add a default option to the listbox. That is, they want to add a listitem to the listbox, like: -- Please Choose an Option Below--. In this brief article we'll tackle this topic and more!
|
|
| 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. |
|
| BUG: The ContextMenu Control That Is Associated with the NotifyIcon Component Is Not Displayed When You Set the OwnerDraw Property of Menu Items in the ContextMenu Control to True |
| Microsoft Support |
| (827043) - You set the OwnerDraw property of menu items in the ContextMenu control to true , and then you set ContextMenu and the Icon properties of the NotifyIcon component. When you run the Microsoft Windows application and then you right-click the Notify icon... |
|
| 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# Timer Demo |
| C# Help |
|
|
| Call A Java Program Using C# |
| C# Help |
|
|
| Changing the background color of cells in a DataGrid |
| The Code Project |
| In this article I want to show how you can change the background color of a specific cells in a datagrid. .To do this you first have to create class derived from DataGridTextBoxColumn or DataGridColumnStyle. You then have to override the Paint() method of these classes. Note that this method has three overloaded versions. |
|
| Create Snazzy Web Charts and Graphics On the Fly with the .NET Framework |
| MSDN |
| Knowledge workers can understand data more effectively when raw numbers are presented in a graphical format. This is especially true when displaying database information on a Web page, where a simple chart can make the difference between a dry presentation and a vivid data source. In the past, creating dynamic, data-based charts on the fly in ASP required purchasing a third-party, image-generating COM component. Now with ASP.NET, developers can access the .NET Framework's drawing classes directly with C# to create dynamic images and charts. |
|
| Creating a .NET Windows Installer - Part 1 |
| C#Today |
| If you're developing an application that you want to distribute to multiple users (or sell as package) you need a convenient, automated approach. Visual Studio .NET provides this with its native support for Windows Installer (MSI) projects. These projects can be used to make setup programs that selectively copy files, create shortcuts and registry settings, and incorporate user input. |
|
| Creating a DataBound List of Radio Buttons |
| 4Guys from Rolla |
| A common task Web developers face is creating a form element (such as a series of checkboxes, radio buttons, or a listbox) whose members are populated by the contents of a database table. This is quite possible (and quite easy) to accomplish with ASP.NET In fact, in a previous article (Creating Databound DropDown Lists in ASP.NET), we examined how to create a databound listbox. In this article, we'll examine how to create a series of radio buttons whose values are automagically populated from a database table! We'll also look at how to respond to the user selecting a particular option and showing more detailed information based upon the radio button selected. |
|
| Creating Graphics with XML |
| C# Corner |
| This article shows how to create images on the fly and uses XML to specify the properties of the images. |
|
| Creating Run-time Menus |
| C# Corner |
| The following example demonstrates how to add menu item and remove menu items at runtime. |
|
| Creating Validation Images On-The-Fly with GDI+ |
| DotNetJunkies |
| Developers can spend many hours with a graphics tool trying to design graphical buttons for a Web site. However, there is a technique that enables you to specify things like, font, size, color and create buttons/labels on-the-fly! In this article, Ben looks at an example where creating dynamic images can prove very useful and is in use by many sites already. |
|
| Custom ASP.NET Datagrid Paging With Exact Count |
| 4Guys from Rolla |
| Anybody in the DB world knows what paging database results is and its effect. From the time I had started getting into good old classic ASP, I was intrigued with the ability to divide large sets of data into sections of x records per page. |
|
| 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: |
|
| DirectX 9.0: Introducing the New Managed Direct3D Graphics API in the .NET Framework |
| MSDN |
| Gen an introduction to the fundamental concepts of the unmanaged Direct3D architecture |
|
| Documents Do Dot Net Guruer: Serve Them Nicely and Effectively with Avalon Document Services |
| MSDN |
| Provides an overview of document services available in Avalon. In particular, it focuses on the PageViewer control. The new managed API for compound files is also presented with practical code samples. |
|
| Drawing Serpinski's Triangle with ASP.NET |
| 4Guys from Rolla |
| One of the cool things that ASP.NET developers now have at their disposal is the ability to create images on the fly and either save these images to the Web server's file system or stream these images directly to the browser! In fact, in my latest coauthored book - ASP.NET: Tips, Tutorials, and Code - I present an ASP.NET Web page that generates a bar chart on the fly from database data. |
|
| DriveComboBox |
| The Code Project |
| Ownerdrawn ComboBox that dispays all logical drives with appropriate icon, volume name and drive letter. |
|
| GDI+ Pens and Fonts |
| C# Corner |
|
|
| Graphics Programming in C# |
| C# Corner |
| Like Java, C# provides us with a rich set of classes, methods and events for developing applications with graphical capabilities. Since there is not much theory involved, we can straight away jump to an interesting example (Listing - 1), which prints "Welcome to C#" on a form. |
|
| Height of Text |
| The Code Project |
| This function will return the height of text. Designed for use with text boxes on windows forms. |
|