0

windows forms

Tài liệu Windows Forms

Tài liệu Windows Forms

Kỹ thuật lập trình

... 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 ... AgendaAgendaAgendaAgendaIntroduction 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 StructureA Windows Forms application has...
  • 18
  • 617
  • 0
Tài liệu Windows Forms

Tài liệu Windows Forms

... TemplatesTemplatesWhat 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 FormsDeploying Windows Forms ApplicationsDeploying Windows Forms ApplicationsDeploying Windows Forms Deploying Windows Forms Applications ... dotNETDeploying Windows Forms Deploying Windows Forms ApplicationsApplicationsDeploying Windows Forms Deploying Windows Forms ApplicationsApplicationsMicrosoft Windows Microsoft Windows Installer...
  • 18
  • 338
  • 0
Thiết kế các ứng dụng GUI bằng windows forms

Thiết kế các ứng dụng GUI bằng windows forms

Kỹ thuật lập trình

... 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 ... 18Nguyễ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...
  • 12
  • 376
  • 0
Reporting with Visual Studio 2008 Windows Forms

Reporting with Visual Studio 2008 Windows Forms

Kỹ thuật lập trình

... Developing VS 2008 reports using Windows Forms • Developing reports using Report WizardDeveloping VS 2008 Reports Using Windows Forms The steps neededto create a Windows Forms client with VS 2008 ... typeCHAPTER 14 ■REPORTING WITH VISUAL STUDIO 2008 WINDOWS FORMS 4258547ch14final.qxd 8/30/07 3:36 PM Page 425Reporting with Visual Studio2008 Windows Forms In 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 anew Windows Forms application project. You’ll...
  • 24
  • 575
  • 0
Reporting with Windows Forms

Reporting with Windows Forms

Kỹ thuật lập trình

... WITH WINDOWS FORMS8 48547ch04final.qxd 8/30/07 4:08 PM Page 84The text box report item is more or less the same as a standard text box control we’d usewith Windows Forms or ASP.NET web forms. ... be used as the key to link up the data.Creating the Windows Forms ProjectPlease 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...
  • 72
  • 388
  • 0
Pro .NET 2.0 Windows Forms and Custom Controls in C#

Pro .NET 2.0 Windows Forms and Custom Controls in C#

Kỹ thuật lập trình

... 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 ... triggers actions in your application).Part 4: Windows Forms TechniquesIn this part, you’ll considerable indispensable techniques for serious Windows Forms programmers. In Chapter 18 you’ll consider ... Framework, even more client momentum is building. Windows Forms now allows developers to build applications with the look and feel of not only Windows itself, but of Microsoft Office as well....
  • 1,081
  • 965
  • 5
Populating a Windows Forms ComboBox

Populating a Windows Forms ComboBox

Kỹ thuật lập trình

... 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...
  • 7
  • 424
  • 0
Displaying an Image from a Database in a Windows Forms Control

Displaying an Image from a Database in a Windows Forms Control

Quản trị mạng

... 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...
  • 5
  • 391
  • 0
Tài liệu Using a DataView to Control Edits, Deletions, or Additions in Windows Forms pdf

Tài liệu Using a DataView to Control Edits, Deletions, or Additions in Windows Forms pdf

Quản trị mạng

... 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....
  • 3
  • 532
  • 0
Tài liệu Adding Search Capabilities to Windows Forms docx

Tài liệu Adding Search Capabilities to Windows Forms docx

Quản trị mạng

... 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...
  • 3
  • 370
  • 0
Tài liệu Work with Data-Bound Multi-Select List Boxes Using Windows Forms It is common to have to assign docx

Tài liệu Work with Data-Bound Multi-Select List Boxes Using Windows Forms It is common to have to assign docx

Cơ sở dữ liệu

... 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...
  • 11
  • 447
  • 0

Xem thêm