• Giáo trình kinh tế vi mô

    Giáo trình kinh tế vi mô

    Một trong những mục tiêu nghiên cứu của kinh tế vi mô là phân tích cơ chế thị trường thiết lập ra giá cả tương đối giữa các mặt hàng và dịch vụ và sự phân phối các nguồn tài nguyên giới hạn giữa nhiều cách sử dụng khác nhau. Kinh tế vi mô phân tích thất bại của thị trường, khi thị trường không vận hành hiệu quả, cũng như miêu tả...

     157 p mku 14/12/2012 400 2

  • Bài giảng Cơ học Newton Quyển 1

    Bài giảng Cơ học Newton Quyển 1

    Isaac Newton (1642 - 1727) sinh ra tại Anh vào đúng năm mất của nhà vật lí thiên văn huyền thoại Galileo Galilei. Newton được coi là một trong những nhà vật lí vĩ đại nhất mọi thời đại, người đã tiếp tục xây dựng thành công các ý tưởng của Galilei về không gian và về chuyển động. Ngày nay, chúng ta thường gọi toàn bộ nền cơ học cổ điển (trước...

     214 p mku 14/12/2012 306 2

  • Giáo trình Ngôn ngữ lập trình C

    Giáo trình Ngôn ngữ lập trình C

    Trong môn lập trình C, tài liệu là rất quan trọng, để tìm được tài liệu hữu ích khổng phải là khó. Giáo trình lập trình C giúp các bạn biết thế nào là ngôn ngữ lập trình C và các câu lệnh liên quan. Bạn muốn tìm hiểu sâu thêm về lập trình C thì giáo trình ngôn ngữ lập trình C nâng cao sẽ giúp ích rất nhiều cho các bạn trong việc nâng cao kỹ...

     202 p mku 14/12/2012 558 5

  • Microsoft PowerPoint 2010

    Microsoft PowerPoint 2010

    PowerPoint 2010 được bổ sung nhiều tính năng mới với sự cải tiến giao diện Ribbon thuận lợi hơn cho người sử dụng. Do vậy, những người đã từng sử dụng thành thạo hoặc những người mới bắt đầu tìm hiểu PowerPoint đều phải học qua cách sử dụng chương trình này. Tuy nhiên, những người đã thành thạo PowerPoint sẽ tốn ít...

     335 p mku 14/12/2012 456 2

  • Giải thuật và lập trình

    Giải thuật và lập trình

    Một cách tiếp cận trực quan, rõ ràng, về các thuật toán căn bản và các cấu trúc dữ liệu các thuật toán và các cấu trúc dữ liệu có trong Java, 2/E, của Goodrich và Tamassia, liên kết mô thức thiết kế hướng đối tượng, dùng Java làm ngôn ngữ thực thi. các tác giả phân tích phần trực giác , mô tả và phân tích về các thuật toán cơ bản và các cấu...

     332 p mku 14/12/2012 471 8

  • Chapter 3 Windows Database Applications

    Chapter 3  Windows Database Applications

    Technology designed to implement the UDA concept Standardized interface that allows reference to data from any source using the same programming tools 3 From DAO To ADO.NET Data Access Objects (DAO 1-tier ) enabled programmers to access local databases in the Microsoft Jet Database Engine format, which were primarily Indexed Sequential Access Method (ISAM) files. After DAO came RDO. Remote Data Objects (2-tier) After RDO came ADO....

     7 p mku 14/12/2012 284 1

  • Chương 1 : Control Nâng Cao

    Chương 1 : Control Nâng Cao

    Chương 1 : Control Nâng Cao single document interface (SDI) frmListView frm = new frmListView(); frm.Name = "frmListView"; frm.Text = "Tieu de cua form"; ///*****frm.MdiParent = this;**** frm.Show(); multiple document interface (MDI) frmListView frm = new frmListView(); frm.Name = "frmListView"; frm.Text = "Tieu de cua form"; frm.MdiParent = this; frm.Show(); Chương 1 : Control Nâng Cao S p x p các c a s Chương 1 :...

     9 p mku 14/12/2012 334 1

  • Chapter 16. Deploy .NET Applications Deploy .NET Applications

    Chapter 16. Deploy .NET Applications Deploy .NET Applications

    Deployment is the process used to distribute a finished application (or component) to be installed on other computers Deployment Challenges Platform requirements Intuitive and easy installer UI Application artifact placement Files / Folders Registry Global Assembly Cache Databases Custom install procedures Removing installation artifacts at uninstall Handling Errors Windows installer will help 2 Windows Installer Application...

     7 p mku 14/12/2012 244 1

  • Chapter 11. Advanced Topics in Windows Forms

    Chapter 11. Advanced Topics in Windows Forms

    Windows users fall into two general categories: use the keyboard use the mouse Drag and drop: same as cutting and pasting using keyboard 11.1 Drag-Drop (P523) Sequence of events Dragging is initiated (call DoDragDrop for the source ) The DoDragDrop method takes two parameters: data allowedEffects A new DataObject object is automatically created. Raises the GiveFeedback event. (display a custom mouse pointer during the drag)...

     14 p mku 14/12/2012 410 1

  • Week 9 Building Multitier Programs with Classes

    Week 9 Building Multitier Programs with Classes

    1. Creating Properties in a Class • Declare all variables in a class as private (encapsulation) • private variable values are only available to procedures in the class • When objects are created from a class, values must be assigned values and values must be passed from the class Creating Classes Creating Classes 2- 4 A Read-Only Property class Myclass class Myclass {{ private int myVar=0; private int myVar=0; public int...

     33 p mku 14/12/2012 264 1

  • Chapter 8 Implementing Data-Bound Controls

    Chapter 8  Implementing Data-Bound Controls

    – Bound and Un-Bound mode ID, Name… Position??? Dataset (Rows) Dataset (Rows) Dataset (Rows) Dataset (Rows) Dataset (Rows) – – Data-bound controls are WinForms controls those can easily bind with data components: DataGrid, ListBox, and a ComboBox have properties, which you can set as a data component and theyre ready to present your data in WinForms: DataSource,DisplayMember, DataMember. Lesson 1: Creating a Data-Bound...

     16 p mku 14/12/2012 342 1

  • Chapter 7 Create, Add, Delete, and Edit Data in a Disconnected Environment

    Chapter 7 Create, Add, Delete, and Edit Data in a Disconnected Environment

    Create a DataSet graphically. Create a DataSet programmatically. Add a DataTable to a DataSet. Add a relationship between tables within a DataSet. Navigate a relationship between tables. Merge DataSet contents. Copy DataSet contents. Create a typed DataSet. Create DataTables. Manage data within a DataTable. Create and use DataViews. Represent data in a DataSet by using XML. (NO) Use the OleDbDataAdapter object to access an ADO Recordset or...

     50 p mku 14/12/2012 372 1

Hướng dẫn khai thác thư viện số
getDocumentFilter3 p_strSchoolCode=mku