Home Common Problem How to learn access by yourself

How to learn access by yourself

Oct 28, 2019 am 11:09 AM
access

As more and more students learn access, people often ask how to learn access. I also expressed my personal opinion. I was really busy today so I took the time to write a note.

First of all, access development does not require anything, just thinking is enough.

How to learn access by yourself

# Those who do not have any development foundation must be familiar with the process, that is, the use of the software design interface of the development platform, the use of the VBA programming language and the use of the database query language . (Recommended study: web front-end video tutorial)

For the use of the development interface, first understand what access has (forms, tables, reports, etc.) and what it can do ( Forms are used for display and operation, tables are used to store data, and reports are used for printing), and how to use them to achieve the effects you want

For VBA programming, you only need to master the basics of programming, such as objects and properties. , how to declare objects, and familiarity with several functions commonly used in VBA, you can basically use VBA programming

For querying, you need to have a concept of the database and the basic statements to query the database

For students with previous experience

Getting started quickly, mainly how to use the access development platform, the subtle differences from other platforms, and the differences between VBA programming and other language programming .

Personally, I think that before you use something, you must first know what it can do, what its advantages and disadvantages are compared to other similar things, the components of this thing and the functions of each part. I spent five days To understand these, I didn't do any coding or interface design, and then I learned by following examples. I just talked about the login function of a system, which already includes most of the functions.

Then you will understand the function you need to implement and what parts can be used to achieve it, so that you will not be a bald donkey two feet tall and scratching your bald head. In fact, I hate development work, but I can barely accept it since I came into contact with access.

Finally, for us developers, we will encounter many problems during learning, ranging from difficult to super simple. Of course it is good to ask others, but we must learn to do it ourselves. To solve the problem, the access official website is a good resource, and the staff on the official website are also very good and know everything.

Of course this is not their job. We should know and be grateful after telling us, not endlessly asking for answers (there is no need to advertise their company, it is just a fact). Two other good methods are Baidu and access help, especially acces help.

As a senior or smart developer, you will make good use of help documents. If the problem that has been entangled for a long time has not been solved in the end, it is best to ask everyone for advice. Mr. Mai once told me, "It is better to teach a man to fish than to teach him to fish." This is the truth that I also use to guide newcomers.

The above is the detailed content of How to learn access by yourself. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to disable background applications in Windows 11_Windows 11 tutorial to disable background applications How to disable background applications in Windows 11_Windows 11 tutorial to disable background applications May 07, 2024 pm 04:20 PM

1. Open settings in Windows 11. You can use Win+I shortcut or any other method. 2. Go to the Apps section and click Apps & Features. 3. Find the application you want to prevent from running in the background. Click the three-dot button and select Advanced Options. 4. Find the [Background Application Permissions] section and select the desired value. By default, Windows 11 sets power optimization mode. It allows Windows to manage how applications work in the background. For example, once you enable battery saver mode to preserve battery, the system will automatically close all apps. 5. Select [Never] to prevent the application from running in the background. Please note that if you notice that the program is not sending you notifications, failing to update data, etc., you can

How to convert deepseek pdf How to convert deepseek pdf Feb 19, 2025 pm 05:24 PM

DeepSeek cannot convert files directly to PDF. Depending on the file type, you can use different methods: Common documents (Word, Excel, PowerPoint): Use Microsoft Office, LibreOffice and other software to export as PDF. Image: Save as PDF using image viewer or image processing software. Web pages: Use the browser's "Print into PDF" function or the dedicated web page to PDF tool. Uncommon formats: Find the right converter and convert it to PDF. It is crucial to choose the right tools and develop a plan based on the actual situation.

How to read dbf file in oracle How to read dbf file in oracle May 10, 2024 am 01:27 AM

Oracle can read dbf files through the following steps: create an external table and reference the dbf file; query the external table to retrieve data; import the data into the Oracle table.

Interpretation of Botanix: decentralized BTC L2 for network asset management (with interactive tutorial) Interpretation of Botanix: decentralized BTC L2 for network asset management (with interactive tutorial) May 08, 2024 pm 06:40 PM

Yesterday, BotanixLabs announced that it has completed a total of US$11.5 million in financing, with participation from Polychain Capital, Placeholder Capital and others. Financing will be used to build the decentralized EVM equivalent of BTCL2Botanix. Spiderchain combines the ease of use of EVM with the security of Bitcoin. Since the testnet went live in November 2023, there have been more than 200,000 active addresses. Odaily will analyze Botanix’s characteristic mechanism and testnet interaction process in this article. Botanix According to the official definition, Botanix is ​​a decentralized Turing-complete L2EVM built on Bitcoin and consists of two core components: Ethereum Virtual Machine

How does the Java reflection mechanism implement dynamic loading of classes? How does the Java reflection mechanism implement dynamic loading of classes? May 04, 2024 pm 03:42 PM

The Java reflection mechanism allows classes to be dynamically loaded and instantiated at runtime, and class metadata can be manipulated through classes in the java.lang.reflect package, including Class, Method, and Field. Through practical cases of loading the Example class, instantiating objects, obtaining and calling methods, you can demonstrate its application in dynamically loaded classes, thereby solving programming problems and improving flexibility.

How to solve access violation error How to solve access violation error May 07, 2024 pm 05:18 PM

Access Violation error is a run-time error that occurs when a program accesses a memory location beyond its memory allocation, causing the program to crash or terminate abnormally. Solutions include: checking array boundaries; using pointers correctly; using appropriate memory allocation functions; freeing freed memory; checking for memory overflows; updating drivers and systems; checking third-party libraries; using a debugger to trace execution; contacting the software vendor for support.

How to enable remote desktop control in Win11_How to enable remote desktop control in Win11 How to enable remote desktop control in Win11_How to enable remote desktop control in Win11 May 08, 2024 pm 12:19 PM

1. Search for the Control Panel page in the Start menu. 2. Then change the view to Category in the control panel and click System and Security. 3. Find and click the Allowremoteaccess button under System. 4. In the pop-up window, click the Remote system properties column, check the Allow remote connection to this computer button and click OK to save.

How to solve the problem of third-party interface returning 403 in Node.js environment? How to solve the problem of third-party interface returning 403 in Node.js environment? Mar 31, 2025 pm 11:27 PM

Solve the problem of third-party interface returning 403 in Node.js environment. When we use Node.js to call third-party interfaces, we sometimes encounter an error of 403 from the interface returning 403...