MS Access and VBA trainer مدرب اكسس و في بي اى

  • Home
  • Egypt
  • Cairo
  • MS Access and VBA trainer مدرب اكسس و في بي اى

MS Access and VBA trainer مدرب اكسس و في بي اى صفحة بتساعد المهتمين بتطوير مهاراتها في استخدام الاكسس و الفي بي اى عن طريق نشر معلومات يومية و تقديم كورسات.

كورس Access advancedاونلاين للتفاصيل ......
30/04/2020

كورس Access advanced
اونلاين للتفاصيل ......

06/10/2019

Relational Databases
Access is a relational database management system. Access data is stored in related tables, where data in one table (such as Customers) is related to data in another table (such as Orders). Access maintains the relationships between related tables, making it easy to extract a customer and all the customer’s orders, without losing any data or pulling order records not owned by the customer.
Multiple tables simplify data entry and reporting by decreasing the input of redundant data. By defining two tables for an application that uses customer information, for example, you don’t need to store the customer’s name and address every time the customer purchases an item.
After you’ve created the tables, they need to be related to each other. For example, if you have a Customers table and a Sales table, you can relate the two tables using a common fi eld between them. In this case, Customer Number would be a good field to have in both tables. This will allow you to see sales in the Sales table where the Customer Number matches the Customers table.
The benefit of this model is that you don’t have to repeat key attributes about a customer (like customer name, address, city, state, zip) each time you add a new record to the Sales table. All you need is the customer number. When a customer changes address, for example, the address changes only in one record in the Customers table.
Separating data into multiple tables within a database makes a system easier to maintain because all records of a given type are within the same table. By taking the time to properly segment data into multiple tables, you experience a significant reduction in design and work time. This process is known as normalization.

ACCESS_Queriesالاستعلامات في برنامج الاكسسQueries extract information from a database. A query selects and defines a gro...
29/07/2019

ACCESS_Queries
الاستعلامات في برنامج الاكسس
Queries extract information from a database. A query selects and defines a group of records that fulfill a certain condition. Most forms and reports are based on queries that combine, filter, or sort data before it’s displayed.

An example of a query is when a person at the sales office tells the database, “Show me all customers, in alphabetical order by name, who are located in Massachusetts and bought something over the past six months” or “Show me all customers who bought Chevrolet car models within the past six months and display them sorted by customer name and then by sale date.”
الاستعلامات تستخرج المعلومات من قاعدة بيانات. يحدد الاستعلام مجموعة من السجلات التي تقابل شرط معين. تعتمد معظم النماذج والتقارير على استعلامات لتجميع ، أو فرز البيانات قبل عرضها.
مثال على استعلام هو عندما يخبر شخص في قسم المبيعات قاعدة البيانات ، "أرني جميعًا العملاء ، بالترتيب الأبجدي بالاسم ، الذين يقعون في ولاية ماساتشوستس واشتروا شيء خلال الأشهر الستة الماضية "أو" أرني جميع العملاء الذين اشتروا سيارة شيفروليه النماذج خلال الأشهر الستة الماضية وعرضها مرتبة حسب اسم العميل وبعد ذلك تاريخ البيع. "

08/07/2019

الجداول في قاعدة البيانات Access
تعمل الجداول كمستودع بيانات أساسي في قاعدة البيانات Access .تتفاعل مع الجداول من خلال نوع خاص من الكائنات يسمى ورقة البيانات.على الرغم من عدم كونه كائن قاعدة بيانات دائمة ، فإن ورقة البيانات تعرض محتوى الجدول بتنسيق صفوف واعمده ، على غرار ورقة عمل Excel. تعرض ورقة البيانات جدولًا المعلومات في شكلها الخام ، دون تنسيق . طريقة عرض ورقة البيانات هي الوضع الافتراضي لعرض جميع الحقول لجميع السجلات. يمكنك التمرير خلال ورقة البيانات باستخدام مفاتيح الاتجاه على لوحة المفاتيح. يمكنك عرض السجلات ذات الصلة أيضًا في الجداول الأخرى أثناء وجودها في ورقة البيانات. بالإضافة إلى ذلك ، يمكنك القيام بتغييرات على البيانات المعروضة
Tables in Access
Tables serve as the primary data repository in an Access database. You interact with tables through a special kind of object called a datasheet. Although not a permanent database object, a datasheet displays a table’s content in a row-and-column format, similar to an Excel worksheet. A datasheet displays a table’s information in a raw form, without transformations or filtering. The Datasheet view is the default mode for displaying all fields for all records. You can scroll through the datasheet using the directional keys on your keyboard. You can also display related records in other tables while in a datasheet. In addition, you can make changes to the displayed data.

06/07/2019

كائنات قاعدة بيانات ACCESS
إذا كنت جديدًا في قواعد البيانات (أو حتى إذا كنت مستخدمًا ذوي خبرة في قاعدة البيانات ACCESS ) ، فأنت بحاجة إلى فهم بعض المفاهيم الأساسية قبل البدء في إنشاء قواعد بيانات Access.
يحتوي قاعدة بيانات Access على ستة أنواع من كائنات المستوى الأعلى ، والتي تتكون من البيانات والأدوات التي تحتاجها لاستخدام Access:
■ الجدول Table : يحمل البيانات الفعلية
■ الاستعلام Query : يبحث عن ، وفرز ، واسترداد بيانات تقوم بتحديتها
■ النموذج Form : يتيح لك إدخال البيانات وعرضها بتنسيق مخصص
■ تقرير Report : يعرض ويطبع بيانات منسقة
■ ماكرو Macro : لميكنة المهام دون برمجة
■ الوحدة النمطية Module : تحتوي على عبارات البرمجة المكتوبة بلغة البرمجة (VBA (Visual Basic for Applications
Access Database Objects
If you’re new to databases (or even if you’re an experienced database user), you need to
understand a few key concepts before starting to build Access databases. The Access database
contains six types of top-level objects, which consist of the data and tools that you
need to use Access:
■ Table: Holds the actual data
■ Query: Searches for, sorts, and retrieves specific data
■ Form: Lets you enter and display data in a customized format
■ Report: Displays and prints formatted data
■ Macro: Automates tasks without programming
■ Module: Contains programming statements written in the VBA (Visual Basic for Applications) programming language

20/05/2019

ما هي قواعد بيانات ؟
عموما ، كلمة قاعدة البيانات هي مصطلح في مجال الكمبيوتر لمجموعة من المعلومات المتعلقة بموضوع معين أو تطبيق للأعمال. قواعد البيانات تساعدك على تنظيم المعلومات ذات الصلة بشكل منطقي لسهولة الوصول واسترجاعها.
Databases
Generally, the word database is a computer term for a collection of information concerning a certain topic or business application. Databases help you organize this related information in a logical fashion for easy access and retrieval.

19/05/2019

إن قاعدة بيانات Access ليست أكثر من نسخة مميكنة من نظام التخزين الورقي المعتاد . قواعد البيانات تخزن المعلومات في بناء محدد بعناية. تقوم جداول Access بتخزين مجموعة متنوعة من أنواع البيانات المختلفة ، من سطور النص البسيطة (مثل الاسم والعنوان) للبيانات المعقدة (مثل الصور أو الأصوات أو صور الفيديو). تخزين البيانات بتنسيق دقيق يمكّن نظام إدارة قواعد البيانات (DBMS) مثل Access لتحويل البيانات إلى معلومات مفيدة.

Address

Cairo

Telephone

01018891556

Website

Alerts

Be the first to know and let us send you an email when MS Access and VBA trainer مدرب اكسس و في بي اى posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share