FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Acces reference guide
Posts: 40
Joined: Sat Mar 04, 2006 03:32 PM
Acces reference guide
Posted: Wed Jan 21, 2026 09:05 PM

j n`ai pas accès au référence guide

merci

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Acces reference guide
Posted: Thu Jan 22, 2026 05:40 AM

Dear Richard,

Si buscas utilizar Microsoft Access en un entorno francófono o simplemente necesitas conocer la terminología técnica para manejar la interfaz en francés, aquí tienes una guía de referencia rápida con los conceptos clave.

Terminología Esencial (Español - Francés)

Para moverte por la interfaz de Access en francés, estas son las traducciones de los objetos y acciones principales:

Concepto en EspañolTérmino en Francés
Base de datosBase de données
TablaTable
ConsultaRequête
FormularioFormulaire
InformeÉtat
CampoChamp
RegistroEnregistrement
Clave principalClé primaire
Hoja de propiedadesFeuille de propriétés

---

Tipos de Datos Comunes

Al diseñar tablas (Tables) en la vista diseño (Mode Création), te encontrarás con estos tipos de datos:

  • Texte court / Texte long: Texto corto y largo.
  • Numérique: Numérico.
  • Date/Heure: Fecha y hora.
  • Monétaire: Moneda.
  • Numéro auto: Autonumérico.
  • Oui/Non: Booleano (Sí/No).

---

Funciones de Consulta (Requêtes)

Si estás escribiendo criterios o campos calculados, las funciones cambian de nombre según el idioma de la instalación:

  • VraiFaux(...): Es el equivalente al SiiF(...) o IIf(...). Se usa para condiciones lógicas.
  • Somme(...): Para sumar valores en un grupo.
  • Compte(...): Para contar registros (equivalente a Cuenta o Count).
  • Moyenne(...): Para calcular el promedio.
  • Maintenant(): Función para obtener la fecha y hora actual (Ahora() o Now()).

---

Recursos Oficiales y Documentación

Si necesitas profundizar o buscar ayuda técnica específica en francés, puedes consultar estos recursos:

  1. Support Microsoft (Français): La documentación oficial traducida es excelente para sintaxis de funciones. Puedes buscar "Fonctions Access par catégorie".
  2. Developpez.com: Es la comunidad de desarrolladores más grande en francés. Tienen una sección dedicada exclusivamente a Access con tutoriales de altísimo nivel.
  3. Forums Microsoft Community: Filtra por el idioma "Français" para ver hilos de resolución de problemas específicos.

---
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Acces reference guide
Posted: Thu Jan 22, 2026 05:42 AM

If you are transitioning to the English version of Microsoft Access or need to align your database structure with international standards, here is a comprehensive reference guide.

Core Database Objects

In the English version of Access, the navigation pane is organized by these four primary objects:

ObjectDescription
TablesWhere all your raw data is stored in rows and columns.
QueriesTools used to search, filter, and calculate data from tables.
FormsUser interfaces for entering, modifying, and viewing records.
ReportsFormatted summaries designed for printing or PDF export.

---

Data Types (Design View)

When setting up your table fields in Design View, you will choose from these standard English data types:

  • Short Text: Alphanumeric data (up to 255 characters).
  • Long Text: Large amounts of text (formerly known as "Memo").
  • Number / Large Number: For mathematical calculations.
  • Date/Time: Specific dates and times.
  • Currency: Monetary values with fixed precision.
  • AutoNumber: Unique sequential numbers assigned by Access.
  • Yes/No: Boolean values (Checkboxes).
  • Calculated: A field that derives its value from other fields.

---

Essential Function Syntax

Access functions in English are the industry standard for SQL and VBA. If you are building expressions in the Expression Builder, these are the most common:

Logical & Conversion

  • IIf(condition, true, false): The "Immediate If" (equivalent to VraiFaux in French).
  • Nz(variant, value_if_null): Replaces a null value with a zero or a specific string.
  • IsDate(), IsNumeric(): Checks if a value matches a specific format.

Aggregate Functions

  • Sum(): Totals a set of values.
  • Avg(): Calculates the average.
  • Count(): Counts the number of records.
  • DLookup("FieldName", "TableName", "Criteria"): Finds a specific value in a table.

---

Keyboard Shortcuts for Efficiency

Using the English interface is often faster with these standard shortcuts:

  • F2: Rename a selected object or enter a field to edit.
  • F4: Open the Property Sheet.
  • F5: Switch to Form View or run a query.
  • Ctrl + G: Open the Immediate Window (for VBA debugging).
  • Alt + F11: Open the Visual Basic Editor.

---

Technical Support Keywords

When searching for solutions online, using these English "Power Keywords" will help you find the best documentation on sites like Stack Overflow or Microsoft Learn:

  • Relational Integrity
  • Inner Join vs. Left Join
  • Normalization (1NF, 2NF, 3NF)
  • SQL Aggregate Functions
  • VBA Event Procedures

---
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion