Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Saturday, November 22, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Knowledge Base > C-Sharp > Windows Form
Search:
What's New - What's Hot


How to create the MDIClient window by using MFC        
Total Hits: 22  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft Visual C++ NET (2002) supported both the managed code model that is provided by the .NET Framework, and the unmanaged native Windows code model. The information in this article applies to unmanaged Visual C++ code only....

How to bind an array of structures to a Windows Form by using Visual C++ .NET or Visual C++ 2005        
Total Hits: 28  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to bind an array of structures to a Windows Form. The example in this article includes a Windows Form that has three text boxes to display the members of the structures. The example also includes four command buttons to browse the array....

HOWTO: Add a MDI list to a System.Windows.Forms.ContextMenu instance        
Total Hits: 26  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to add a MDI list to a System.Windows.Forms.ContextMenu instance....

How to get the last restart/reboot time for windows        
Total Hits: 92  |  Today: 1 Author: Gautham Jayaraman       Rating:  
Read Reviews | Write Review |   Your Rating: 

This code snippet helps to get the time when the Windows OS was last rebooted, using C# code....

HOW TO: Set a Windows Hook in Visual C# .NET (Q318804)        
Total Hits: 1705  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to set a hook that is specific to a thread and to a hook procedure by using the mouse hook as an example. You can use hooks to monitor certain types of events. You can associate these events with a specific thread or with all of the threads in the same desktop as a calling thread....

HOW TO: Save a .gif File with a New Color Table By Using Visual C# .NET (Q319061)        
Total Hits: 1546  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

The CompuServe Graphics Interchange Format (GIF) is designed with a maximum of 256 colors that are arranged in a color table. To make common modifications to a .gif image file, you must change a custom color table. However, when System.Drawing edits an Image object and is then asked to save the image with the GIF encoder, the resulting .gif file contains a halftone color table....

HOW TO: Send Raw Data to a Printer by Using Visual C# .NET        
Total Hits: 832  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article shows how to use Win32 spooler functions from a program that you create by using Visual C# .NET....

HOW TO: Bind an Array of Objects to a Windows Form by Using Visual C# .NET (Q313635)        
Total Hits: 1507  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to bind an array of objects to a Windows form. The example consists of a Windows form with three text boxes to display the object properties, and four command buttons to browse the array....

MFC Tutorial - Creating a window with two classes        
Total Hits: 84  |  Today: 1 Author: Muthukumar       Rating:  
Read Reviews | Write Review |   Your Rating: 

MFC provides really nice classes for doing Windows programming. It has taken away all the pains of SDK, where a programmer is expected to handle everything in the world except writing application logic.
The first task to be done in any application is to create a window for an application. MFC provides two important classes viz. CWinApp and CFrameWnd, which can be used for creating a window and the application. Both these classes have their own message handling mechanisms, screen-drawing funct...

How to change the MessageBox window (Add controls and change texts)?        
Total Hits: 44  |  Today: 0 Author: dSolariuM       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article we will learn how to add controls to a MessageBox or how to change its button texts. You can use this method to create (full) Multilanguage programs (Just a suggestion!). There are some ways to do this and I chose the hooking method....

How to create client access to a remote server by using Visual C++ .NET or Visual C++ 2005        
Total Hits: 28  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to create a client that accesses a remote server. This client can be located on the same computer, on a different computer, or on a different network....

How To Create a Modeless CPropertySheet with Standard Buttons        
Total Hits: 22  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft Visual C++ .NET (2002) supports both the managed code model that is provided by the Microsoft .NET Framework and the unmanaged native Microsoft Windows code model. The information in this article applies only to unmanaged Visual C++ code....

How To Implement Forms-Based Authentication in Your ASP.NET Application by Using C# .NET        
Total Hits: 65  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to implement forms-based authentication by using a database to store the users....

How to install an assembly in the global assembly cache in Visual C++ .NET and in Visual C++ 2005        
Total Hits: 73  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to generate a strong name for an assembly, and how to install a DLL in the global assembly cache (GAC). With the global assembly cache, you can share assemblies across multiple applications. The .NET runtime automatically installs the global assembly cache. Components are typically stored in the WINDIR\Assembly folder, where WINDIR is the name of your windows folder....

How to bind an array of objects to a Windows Form by using Visual C++ .NET or Visual C++ 2005        
Total Hits: 33  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to bind an array of objects to a Windows form. The example includes a Windows form with three text boxes to display the object properties and includes four command buttons to browse the array....

How to bind an array of objects to a Windows Form by using Visual C++ .NET or Visual C++ 2005        
Total Hits: 32  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to bind an array of objects to a Windows form. The example includes a Windows form with three text boxes to display the object properties and includes four command buttons to browse the array....

HOW TO: Use C# to Draw a Rubber Band Rectangle or Focus Rectangle (Q314945)        
Total Hits: 1700  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

A rubber band or focus rectangle is a rectangle that tracks with the mouse pointer while you hold down the left mouse button. This technique is commonly used to delimit a selection in response to user mouse-pointer input. In the graphics device interface (GDI), these rectangles are commonly implemented by using raster operations (ROPs). However, the System.Drawing method is based on GDI+ (the successor to GDI), which has no support for ROPs. This article explains another approach for implementin...

HOW TO: Display Parent and Child Records in a DataGrid Using Windows Forms with Visual C# .NET (Q308484)        
Total Hits: 1824  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to create a Windows form that displays a parent (or master) record and all of the related child (or detail) records by using the Northwind Customers and Orders tables. This article also describes the CurrencyManager object and its purpose....

HOW TO: Bind an ArrayList of Structures to a Windows Form by Using Visual C# .NET        
Total Hits: 1006  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

s step-by-step article describes how to bind an ArrayList of structures to a Windows form. The example consists of a Windows form with three text boxes to display the structure members, and four command buttons to browse the ArrayList....

How to create a Task in CRM 3.0        
Total Hits: 67  |  Today: 0 Author: Oshri Cohen       Rating:  
Read Reviews | Write Review |   Your Rating: 

I was recently assigned to transfer data from an ACT! to Microsoft CRM 3.0.
The data included importing all of the present and historical activities.
In crm 3.0 all tasks, emails, appointments... are classified as activities in order to import the data effectively i needed to understand what each field in the task object of the crm 3.0 web service represented.
I will explain each field in this Article....


1  2  Next >> 


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net