Tài liệu Windows Forms
... standards. What is Windows Forms (a.k.a. What is Windows Forms (a.k.a. WinForms)? WinForms)? What is Windows Forms (a.k.a. What is Windows Forms (a.k.a. WinForms)? WinForms)? Windows Forms is part ... Agenda Agenda Agenda Agenda Introduction Windows Forms Introduction Windows Forms How to handle events in Windows Forms How to handle events in Windows Forms Adding controls to forms (design-time) Adding controls to forms (design-time) Dynamically ... for Navigating Data Windows Forms Application Structure Windows Forms Application Structure Windows Forms Application Structure Windows Forms Application Structure A Windows Forms application has...
Ngày tải lên: 17/08/2012, 09:38
... Templates Templates What is Windows Forms (a.k.a. What is Windows Forms (a.k.a. WinForms)? WinForms)? What is Windows Forms (a.k.a. What is Windows Forms (a.k.a. WinForms)? WinForms)? Windows Forms is part ... applications with Windows Creating MDI applications with Windows Forms Forms Deploying Windows Forms Applications Deploying Windows Forms Applications Deploying Windows Forms Deploying Windows Forms Applications ... dotNET Deploying Windows Forms Deploying Windows Forms Applications Applications Deploying Windows Forms Deploying Windows Forms Applications Applications Microsoft Windows Microsoft Windows Installer...
Ngày tải lên: 18/01/2013, 08:50
Advanced M-file Features
... brings up another window. You can also select File ► Set Path . 8. Advanced M-file Features This section describes advanced M-file techniques, such as how to pass a function as an argument...
Ngày tải lên: 29/09/2013, 21:20
Thiết kế các ứng dụng GUI bằng windows forms
... FormBorderSytle.None . Trên Windows CE vị trí của cửa sổ luôn luôn bằng thuộc tính Location , trừ khi ứng dụng đưa vào trạng thái phóng to hoặc thu nhỏ hết cỡ. 2.6 Điều khiển Button Lớp System .Windows. Forms. Button ... 18 Nguyễn Tuấn Anh – email: tuananhk43@yahoo.com Chương 2 Thiết kế các ứng dụng GUI bằng Windows Forms 2.1 Những điều khiển không hỗ trợ Sau đây là danh sách các điều khiển không được .NET ... PC hoặc Windows CE .NET. Hai nền tảng có các hàm giao diện người sử dụng API khác nhau. Một dự án SDE thao tác bằng cách gọi các thư viện khác nhau cho mỗi nền tảng. 2.4.1 Nền tảng Windows...
Ngày tải lên: 02/10/2013, 21:20
Reporting with Visual Studio 2008 Windows Forms
... Developing VS 2008 reports using Windows Forms • Developing reports using Report Wizard Developing VS 2008 Reports Using Windows Forms The steps needed to create a Windows Forms client with VS 2008 ... type CHAPTER 14 ■ REPORTING WITH VISUAL STUDIO 2008 WINDOWS FORMS 425 8547ch14final.qxd 8/30/07 3:36 PM Page 425 Reporting with Visual Studio 2008 Windows Forms I n the past 13 chapters, you saw RS in ... also if you wish to create the Windows Forms application). 5. Click the OK button to finish the process. After you click OK, Visual Studio will create a new Windows Forms application project. You’ll...
Ngày tải lên: 05/10/2013, 08:48
Reporting with Windows Forms
... WITH WINDOWS FORMS8 4 8547ch04final.qxd 8/30/07 4:08 PM Page 84 The text box report item is more or less the same as a standard text box control we’d use w ith Windows Forms or ASP.NET web forms. ... be used as the key to link up the data. Creating the Windows Forms Project Please open Visual Studio, and use the following steps to create a Windows application proj- ect; refer to Figure 4-1 ... System.Data; using System.Drawing; using System.Text; using System .Windows. Forms; using System.Data.SqlClient; using Microsoft.Reporting.WinForms; namespace ProductReorder { public partial class Form1...
Ngày tải lên: 05/10/2013, 08:48
Pro .NET 2.0 Windows Forms and Custom Controls in C#
... covers. If you already have some experience with Windows Forms, feel free to skip from chapter to chapter. If you’re relatively new to Windows Forms development, it’s probably best to read through ... and lists, a hallmark of modern Windows applications. Finally, Chapters 7 and 8 consider two impressive higher-level features that are built into the Windows Forms model—GDI+ (for hand-drawing ... triggers actions in your application). Part 4: Windows Forms Techniques In this part, you’ll considerable indispensable techniques for serious Windows Forms programmers. In Chapter 18 you’ll consider...
Ngày tải lên: 19/10/2013, 21:15
Populating a Windows Forms ComboBox
... BindingManagerBase object to the total number of [ Team LiB ] Recipe 7.11 Populating a Windows Forms ComboBox Problem You need to populate a ComboBox from a database, bind a field in a ... to fill a ComboBox: either use the Add( ) method or bind the ComboBox to a data source. The Windows Forms ComboBox control has three properties that are used to control data binding to an ADO.NET...
Ngày tải lên: 20/10/2013, 12:15
Displaying an Image from a Database in a Windows Forms Control
... information, see the online sample code. Binding Windows Forms Controls The abstract BindingManagerBase class synchronizes all Windows Forms controls (i.e., Binding objects) that are bound ... Recipe 7.8 Displaying an Image from a Database in a Windows Forms Control Problem You need to display an image from a database in a Windows Forms control. Solution Read the image into a byte ... constants using System; using System.Configuration; using System.Drawing; using System .Windows. Forms; using System.IO; using System.Data; using System.Data.SqlClient; private DataSet...
Ngày tải lên: 28/10/2013, 18:15
Tài liệu Using a DataView to Control Edits, Deletions, or Additions in Windows Forms pdf
... Additions in Windows Forms Problem You need to selectively prevent users from editing, deleting, or adding data in a Windows Forms application. Solution Bind a DataView to Windows Forms controls. ... The DataView class represents a view of the DataTable that can be data bound on both Windows Forms and Web Forms. The DataView can be customized for editing, filtering, searching, and sorting....
Ngày tải lên: 14/12/2013, 18:16
Tài liệu Adding Search Capabilities to Windows Forms docx
... MessageBoxIcon.Question); findTextBox.Focus( ); } [ Team LiB ] Recipe 7.15 Adding Search Capabilities to Windows Forms Problem You need to use a search criteria specified by a user to locate a record displayed ... Namespaces, variables, and constants using System; using System.Configuration; using System .Windows. Forms; using System.Data; using System.Data.SqlClient; private DataView dv; private CurrencyManager...
Ngày tải lên: 14/12/2013, 18:16
Tài liệu Work with Data-Bound Multi-Select List Boxes Using Windows Forms It is common to have to assign docx
... 8.1 Work with Data-Bound Multi-Select List Boxes Using Windows Forms It is common to have to assign products to categories, which is a one-to-many relationship. ... you created for this tutorial. This routine performs basically the same tasks that the routine listed in the previous step does, except that it performs the tasks using the lstSelected ListBox ... in the DataRowView object. Steps Open and run the VB.NET -Chapter 8 solution. From the main Windows Form, click on the command button with the caption How-To 8.1. You will then see the form...
Ngày tải lên: 14/12/2013, 20:16
Bạn có muốn tìm thêm với từ khóa: