ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Microsoft Access 2021 Programming Pocket Primer

دانلود کتاب Microsoft Access 2021 Programming Pocket Primer

Microsoft Access 2021 Programming Pocket Primer

مشخصات کتاب

Microsoft Access 2021 Programming Pocket Primer

ویرایش: [1 ed.] 
نویسندگان:   
سری:  
ISBN (شابک) : 168392889X, 9781683928898 
ناشر: Mercury Learning and Information 
سال نشر: 2022 
تعداد صفحات: 218 
زبان: English 
فرمت فایل : RAR (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 11 Mb 

قیمت کتاب (تومان) : 42,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 4


در صورت تبدیل فایل کتاب Microsoft Access 2021 Programming Pocket Primer به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب Microsoft Access 2021 Programming Pocket Primer نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب Microsoft Access 2021 Programming Pocket Primer

به عنوان بخشی از سری موفق Pocket Primer، این کتاب برای افرادی مانند شما طراحی شده است که نیاز به تسلط بر اصول برنامه نویسی Access بدون صرف زمان زیاد دارند. تنها چیزی که برای شروع نیاز دارید یک کتاب کوتاه است. این فقط چیزهایی را به شما نشان می دهد که باید بدانید تا با VBA احساس راحتی کنید. آنچه در این کتاب در مورد برنامه نویسی اکسس یاد می گیرید، مثلاً برای برنامه نویسی اکسل نیز صدق می کند. این کتاب به نه فصل تقسیم شده است که به تدریج شما را با برنامه نویسی Microsoft Access 2021 آشنا می کند.

ویژگی ها:
    < li>شامل یک دیسک همراه با تمام فایل‌های "Hands-On" مورد نیاز برای تکمیل پروژه‌های فصل و همه تصاویر از متن (فایل‌های موجود از ناشر با ارسال ایمیل به info@merclearning.com با اثبات خرید)
  • شما را با استفاده از زبان برنامه نویسی VBA در Microsoft Access 2021 آشنا می کند.
  • <. /ul>

توضیحاتی درمورد کتاب به خارجی

As part of the successful Pocket Primer series, this book was designed for someone like you who needs to master Access programming fundamentals without spending too much time. All you need is a short book to get you started. It will show you only the things you need to know to feel at home with VBA. What you learn in this book on Access programming will also apply to, say, Excel programming. The book is divided into nine chapters that progressively introduce you to programming Microsoft Access 2021.

Features:
  • Includes a companion disc with all of the “Hands-On” files needed to complete the chapter projects and all the images from the text (files available from the publisher by emailing info@merclearning.com with proof of purchase)
  • Introduces you to using the VBA programming language in Microsoft Access 2021.


فهرست مطالب

Cover
Title
Copyright
Contents
Acknowledgments
Introduction
Chapter  1 Getting Started with Access VBA
	Understanding VBA Modules and 
Procedure Types
	Writing Procedures in a Standard Module
	Executing Your Procedure
	Understanding Class Modules
	Events, Event Properties, and Event Procedures
		Why Use Events?
		Walking Through an Event Procedure
	Compiling Your Procedures
	Placing a Database in a Trusted Location
	Summary
Chapter 2 Getting to Know Visual Basic Editor (VBE)
	Understanding the Project Explorer Window
	Understanding the Properties Window
	Understanding the Code Window
	Other Windows in the VBE
	Assigning a Name to the VBA Project
	Renaming the Module
	Syntax and Programming Assistance
		List Properties/Methods
		Parameter Info
		List Constants
		Quick Info
		Complete Word
		Indent/Outdent
		Comment Block/Uncomment Block
	Using the Object Browser
	Using the VBA Object Library
	Using the Immediate Window
	Summary
Chapter 3 Access VBA Fundamentals
	Introduction to Data Types
	Understanding and Using Variables
		Declaring Variables
		Specifying the Data Type of a Variable
			Using Type Declaration Characters
		Assigning Values to Variables
		Forcing Declaration of Variables
		Understanding the Scope of Variables
			Procedure-Level (Local) Variables
			Module-Level Variables
			Project-Level Variables
		Understanding the Lifetime of Variables
		Using Temporary Variables
		Creating a Temporary Variable with a TempVars Collection Object
		Retrieving Names and Values of TempVar Objects
		Using Temporary Global Variables in Expressions
		Removing a Temporary Variable from a TempVars Collection Object
		Using Static Variables
		Using Object Variables
		Disposing of Object Variable
		Finding a Variable Definition
		Determining the Data Type of a Variable
	Using Constants in VBA Procedures
		Intrinsic Constants
	Summary
Chapter 4 Access VBA Built-In and Custom Functions
	Writing Function Procedures
	Running Function Procedures
	Data Types and Functions
	Passing Arguments to By Reference 
and By Value
	Using Optional Arguments
	Using the IsMissing Function
	Using VBA Built-In Functions for 
User Interaction
		Using the MsgBox Function
		Returning Values from the MsgBox Function
		Using the InputBox Function
	Converting Data Types
	Summary
Chapter 5 Adding Decisions to Your Access VBA Programs
	Relational and Logical Operators
	If…Then Statement
	Multiline If…Then Statement
	Decisions Based on More Than
 One Condition
	If…Then…Else Statement
	If…Then…ElseIf Statement
	Nested If…Then Statements
	Select Case Statement
		Using Is with the Case Clause
		Specifying a Range of Values in a Case Clause
		pecifying Multiple Expressions in a Case Clause
	Summary
Chapter 6 Adding Repeating Actions to Your Access VBA Programs
	Using the Do…While Statement
		Another Approach to the Do…While Statement
	Using the Do…Until Statement
		Another Approach to the Do…Until Statement
	Using the For…Next Statement
	Using the For Each…Next Statement
	Exiting Loops Early
	Nested Loops
	Summary
Chapter 7 Keeping Track of Multiple 
Values Using Arrays
	Understanding Arrays
		Declaring Arrays
		Array Upper and Lower Bounds
		Initializing and Filling an Array
			Filling an Array Using Individual Assignment Statements
			Filling an Array Using the Array Function
			Filling an Array Using the For…Next Loop
		Using a One-Dimensional Array
		Arrays and Looping Statements
		Using a Two-Dimensional Array
		Static and Dynamic Arrays
		Array Functions
			The Array Function
			The IsArray Function
			The Erase Function
			The LBound and UBound Functions
		Errors in Arrays
		Parameter Arrays
		Passing Arrays to Function Procedures
		Sorting an Array
		Summary
Chapter 8 Keeping Track of Multiple 
Values Using Object Collections
	Creating Your Own Collection
		Adding Items to Your Collection
		Determine the Number of Items in Your Collection
		Accessing Items in a Collection
		Removing Items from a Collection
		Updating Items in a Collection
		Returning a Collection from a Function
	Collection vs. Arrays
	Watching the Execution of Your VBA Procedures
	Summary
Chapter 9 Getting to Know Built-In Tools 
for Testing and Debugging
	Syntax, Runtime, and Logic Erros
	Stopping a Procedure
	Using Breakpoints
		Removing Breakpoints
	Using the Immediate Window in Break Mode
	Using the Stop Statement
	Using the Assert Statement
	Using the Add Watch Window
		Removing Watch Expressions
	Using Quick Watch
	Using the Locals Window
	Using the Call Stack Dialog Box
	Stepping Through VBA Procedures
		Stepping Over a Procedure
		Stepping Out of a Procedure
		Running a Procedure to Cursor
		Setting the Next Statement
		Showing the Next Statement
	Navigating with Bookmarks
	Stopping and Resetting VBA Procedures
	Trapping Errors
		Using the Err Object
		Procedure Testing
		Setting Error-Trapping Options
	Summary
Index




نظرات کاربران