Visual Foxpro 8 Portable [2021] File

Visual Foxpro 8 Portable [2021] File

Creating a "portable" version of Visual FoxPro (VFP) 8.0 involves gathering the necessary runtime DLLs into a single folder with your compiled application (.exe). This allows the application to run on machines without requiring a formal installation. 1. Essential Runtime Files

To make a VFP 8.0 application portable, you must include the following core files in the same directory as your application executable: VFP8R.DLL: The primary runtime engine. VFP8T.DLL: Required for multi-threaded support.

VFP8RENU.DLL: The English resource file (use the specific version for other languages, like VFP8RDEU.DLL for German). MSVCR70.DLL: The Microsoft C++ Runtime library version 7.0.

GDIPLUS.DLL: Necessary for rendering graphics and modern UI elements. 2. Optional Components

Depending on your application's features, you may need these additional files:

Data Access: If your app connects to VFP data from external tools, include VFPOLEDB.DLL.

XML Support: Include MSXML4.DLL, MSXML4A.DLL, and MSXML4R.DLL if you process XML data.

ActiveX Controls: Common controls like MSCOMCTL.OCX or COMCTL32.OCX must be present and may require registration (regsvr32) on the target machine if they aren't already there. 3. Step-by-Step Setup

Gather Files: Locate the runtime files on your development machine. They are typically found in C:\Program Files\Common Files\Microsoft Shared\VFP\.

Create Portable Folder: Copy your compiled .exe and all the files listed in Section 1 into a new folder on your thumb drive or target directory.

Deployment: Simply copy this folder to any supported Windows machine (Windows XP through Windows 10/11 via WOW64) to run the application.

Updates: Ensure you have applied Service Pack 1 to your development environment before gathering these files to include the latest security and stability fixes. Microsoft OLE DB Provider for Visual FoxPro 8.0

You're looking for a report on "Visual FoxPro 8 Portable". Here's what I found:

Overview

Visual FoxPro 8 Portable is a free, downloadable, and portable version of the Visual FoxPro 8 development environment. Visual FoxPro (VFP) is a powerful, object-oriented, and event-driven programming language and development environment created by Microsoft.

Key Features

The portable version of Visual FoxPro 8 offers the following features:

  1. Complete Development Environment: Includes the VFP8 compiler, debugger, and design tools.
  2. No Installation Required: Can be run directly from a USB drive or any folder without installation.
  3. Database Development: Supports creation and management of databases, including data modeling, SQL development, and data manipulation.
  4. Object-Oriented Programming: Supports object-oriented programming (OOP) concepts, such as classes, objects, inheritance, and polymorphism.

Specifications

  • Operating System: Windows XP/Vista/7/8/10 (32-bit and 64-bit)
  • Processor: Intel Pentium or compatible processor
  • Memory: 256 MB RAM (512 MB recommended)
  • Disk Space: 500 MB free disk space

Advantages

The portable version of Visual FoxPro 8 offers several advantages:

  1. Convenience: Can be carried on a USB drive and used on any Windows machine without installation.
  2. Flexibility: Allows developers to work on projects without requiring administrative privileges or affecting the host machine's configuration.
  3. Cost-Effective: Free to download and use.

Disadvantages

Some limitations and potential drawbacks:

  1. Limited Support: As a portable version, it may not receive official support or updates from Microsoft.
  2. Potential Compatibility Issues: May not work seamlessly with newer operating systems or software configurations.
  3. Security Risks: Using a portable version of a development environment may pose security risks if not used properly.

Conclusion

Visual FoxPro 8 Portable is a useful tool for developers who need a reliable and feature-rich development environment without the overhead of installation. While it offers several advantages, it is essential to consider the potential limitations and risks associated with using a portable version of a development environment.

The story of Visual FoxPro (VFP) 8.0 "Portable" is one of a legendary database tool that refused to die, kept alive by a community that valued speed and simplicity over modern bloat. Released on February 1, 2003, VFP 8.0 was one of the most significant updates in the software's history, introducing structured error handling, better XML support, and enhanced data interoperability. The Quest for Portability

The term "portable" in the context of Visual FoxPro 8.0 typically refers to two distinct community-driven practices:

Thumb Drive IDEs: Unlike modern software that requires heavy installation and registry entries, developers discovered that VFP 8.0 could be configured to run directly from a USB thumb drive. This allowed developers to carry their entire environment—compilers, tools, and databases—in their pocket, working on any Windows machine without a full installation.

The "Zero-Server" Database: VFP was uniquely portable because its relational database engine was built-in. It didn't require a dedicated server like SQL Server or Oracle; the data lived in simple .dbf files in a folder, making the entire application easy to move or deploy across different systems. Key Features of the VFP 8.0 Era Impact on Developers CursorAdapter Class

Provided a uniform way to handle local and remote data (SQL Server, Oracle). XMLAdapter Class

Enabled easier data exchange with modern web services and .NET compatible solutions. Try/Catch Handling

Brought structured error handling to the language, making apps more stable. UI Enhancements

Added auto-anchoring of controls and support for Windows XP Themes.

To create a Visual FoxPro 8.0 (VFP 8) application, you must package the executable with its specific runtime libraries in the same folder. This allows the program to run from a USB drive or local directory without a formal installation. Stack Overflow 1. Essential Runtime Files

For a standard VFP 8 application to run, the following core files must be located in the same directory as your compiled : The main runtime library.

: The multi-threaded runtime (required if using COM objects or background tasks). vfp8renu.dll visual foxpro 8 portable

: The English language resource file (use a different version if your app uses another language, such as vfp8rdeu.dll for German). msvcr70.dll : The Visual C++ 7.0 runtime required by VFP 8. gdiplus.dll : Required for modern graphics and form rendering. Flylib.com 2. Optional Dependencies

If your application uses specific features, you may need additional files in the folder: XML Support msxml4.dll msxml4a.dll msxml4r.dll if your app uses the XMLAdapter or other XML functions. : If you need external database connectivity, the Microsoft OLE DB Provider for VFP 8.0 (vfpoledb.dll) may be required. 3. Portable Implementation Guide

Follow these steps to build and deploy your portable application: Compile the Executable : In the VFP 8 IDE, open your project ( ) and click Executable to generate your Create the Portable Folder : Create a new folder (e.g., MyPortableApp ) on your computer or USB drive. Copy Files : Place your generated and all the files listed in the Essential Runtime Files section into this folder. Handle Data Paths Avoid hard-coding drive letters. Use relative paths (e.g.,

) to ensure the app can find its database regardless of the drive letter assigned to the USB. FULLPATH(CURDIR())

functions in your startup code to programmatically determine where the application is running. Manage Temp Files : VFP creates temporary files (like

). By default, these may try to write to the host computer's temp folder. You can redirect these to the USB folder using a Config.fpw file in your application folder with the command: TMPFILES = .\Temp 4. Technical Considerations Microsoft OLE DB Provider for Visual FoxPro 8.0

Visual FoxPro 8 (VFP 8) can be made portable by including the required runtime DLL files in the same folder as your application's executable

. This allows the program to run on guest computers without needing a formal installation or administrator privileges. Stack Overflow Required Files for Portability

To create a portable VFP 8 environment, you typically need to copy these core runtime files into your application's root directory: : The main Visual FoxPro 8 runtime. VFP8RENU.DLL

: The English language resource file (or the specific localized version for your region). MSVCR70.DLL : The Microsoft C Runtime library required by VFP 8. gdiplus.dll : Often required for modern graphics rendering in VFP 8. Informer Technologies, Inc. Key Considerations


Is a Pre-Made "Visual FoxPro 8 Portable" Download Safe?

Warning: You will find websites offering "VFP 8 Portable.7z" or "PortableApps.com" style versions. Do not download these.

  • Legality: Distributing VFP 8 without a license is software piracy. Microsoft still holds copyright (now owned by an external firm after discontinuation, but still enforced).
  • Malware: VFP 8 is old. Malicious actors inject ransomware into these portable packs because they target legacy developers.

Best Practice: Build your own from your legitimate media. If you lost your CD, use the "Visual FoxPro 8.0 SP1" downloadable archive from the Internet Archive (as an archival copy) – but only if you possess a valid license key.

Visual FoxPro 8 Portable: Reviving a Legacy Database Titan on Modern Systems

Top 5 Pitfalls of Visual FoxPro 8 Portable (And Solutions)

3. Side-by-Side Versioning

You can have VFP 9 installed natively, but keep a portable VFP 8 on your desktop to test compatibility without uninstalling anything.

Final Recommendation

Instead of chasing a “portable VFP 8”, consider:

  1. Install VFP 9 runtime (properly) – it's tiny and officially redistributable.
  2. Use virtualization (e.g., Portable VirtualBox with Windows XP) for full legacy environment.
  3. Run from network share – VFP 8 works fine from a mapped drive with proper permissions.

If you must have portability, build your own from a licensed source — it’s safer and more reliable.

You're looking for Visual FoxPro 8 Portable.

Visual FoxPro 8 is a discontinued database management system and programming language developed by Microsoft. While I couldn't find an official portable version of Visual FoxPro 8, I can offer some insights and potential alternatives: Creating a "portable" version of Visual FoxPro (VFP) 8

What is a portable application? A portable application is a software program that can be run from a portable storage device, such as a USB drive, without requiring installation on the host computer.

Challenges with Visual FoxPro 8 Visual FoxPro 8 is a legacy application that was designed for Windows 98, ME, NT, 2000, and XP. It's not natively compatible with modern Windows versions, which may make it difficult to run.

Potential solutions:

  1. Visual FoxPro 8 runtime libraries: You can download the Visual FoxPro 8 runtime libraries from Microsoft's website. These libraries allow you to run Visual FoxPro applications on a computer without installing the full Visual FoxPro 8 development environment.
  2. Portable Visual FoxPro: There are some third-party websites that offer portable versions of Visual FoxPro, but I couldn't verify their legitimacy or compatibility. Be cautious when downloading software from unverified sources.
  3. Virtualization or emulation: You can consider using virtualization software (e.g., VMware, VirtualBox) or emulation tools (e.g., DOSBox) to run Visual FoxPro 8 on a modern computer. However, this may require a valid license and a compatible operating system.
  4. Migration to a newer platform: If you're still using Visual FoxPro 8 for development or business purposes, it might be time to consider migrating to a newer platform, such as .NET, Azure, or other modern database management systems.

Before proceeding

  • Ensure you have a valid license for Visual FoxPro 8.
  • Understand the potential risks and limitations of running a legacy application on modern hardware and software.
  • Be cautious when downloading software from third-party sources.

If you're looking for a specific portable version of Visual FoxPro 8, I recommend searching for verified and legitimate sources. Alternatively, consider exploring modern database management systems and development tools that can meet your needs.

Visual FoxPro 8 (VFP 8) remains a cornerstone for developers maintaining data-centric legacy applications. While Microsoft never released an official "portable" version of the IDE, the concept of a portable Visual FoxPro 8 environment is highly sought after for developers who need to support old systems without performing a full, registry-heavy installation on modern hardware. What is Visual FoxPro 8 Portable?

In the developer community, "portable" refers to a configuration that allows the VFP 8 IDE or its compiled applications to run directly from a USB drive or a standalone folder without a formal installation. This is achieved by manually grouping the core executable (vfp8.exe) with its required runtime dynamic-link libraries (DLLs).

Key Runtime Files: To function portably, VFP 8 typically requires vfp8r.dll, vfp8t.dll, and vfp8renu.dll in the same directory as the application or IDE executable.

Use Cases: It is primarily used for quick bug fixing on client machines, running legacy data-processing scripts without local installation, and maintaining "clean" developer environments on modern Windows 10 or 11 systems. Core Features of Visual FoxPro 8

Released in 2003, VFP 8 introduced several major architectural enhancements that made it a "must-have" upgrade over previous versions.

Structured Error Handling: Introduced the TRY...CATCH...FINALLY construct, significantly improving how developers manage runtime errors compared to the older ON ERROR commands.

New Base Classes: VFP 8 debuted several powerful classes, including:

CursorAdapter: A unified way to access data from different sources (native VFP, SQL Server, XML) using a single object.

XMLAdapter: Enhanced support for hierarchical XML, making it easier to exchange data with modern web services.

Empty Class: A ultra-lightweight class with no intrinsic properties or methods, perfect for high-speed object instantiation.

IDE Modernization: The IDE gained dockable windows, a Task Pane Manager for better project organization, and a "Toolbox" for dragging and dropping frequently used classes and snippets. Technical and Legal Considerations

Using a portable version of VFP 8 comes with specific challenges and responsibilities: Specifications


Creating a "portable" version of Visual FoxPro (VFP) 8.0 involves gathering the necessary runtime DLLs into a single folder with your compiled application (.exe). This allows the application to run on machines without requiring a formal installation. 1. Essential Runtime Files

To make a VFP 8.0 application portable, you must include the following core files in the same directory as your application executable: VFP8R.DLL: The primary runtime engine. VFP8T.DLL: Required for multi-threaded support.

VFP8RENU.DLL: The English resource file (use the specific version for other languages, like VFP8RDEU.DLL for German). MSVCR70.DLL: The Microsoft C++ Runtime library version 7.0.

GDIPLUS.DLL: Necessary for rendering graphics and modern UI elements. 2. Optional Components

Depending on your application's features, you may need these additional files:

Data Access: If your app connects to VFP data from external tools, include VFPOLEDB.DLL.

XML Support: Include MSXML4.DLL, MSXML4A.DLL, and MSXML4R.DLL if you process XML data.

ActiveX Controls: Common controls like MSCOMCTL.OCX or COMCTL32.OCX must be present and may require registration (regsvr32) on the target machine if they aren't already there. 3. Step-by-Step Setup

Gather Files: Locate the runtime files on your development machine. They are typically found in C:\Program Files\Common Files\Microsoft Shared\VFP\.

Create Portable Folder: Copy your compiled .exe and all the files listed in Section 1 into a new folder on your thumb drive or target directory.

Deployment: Simply copy this folder to any supported Windows machine (Windows XP through Windows 10/11 via WOW64) to run the application.

Updates: Ensure you have applied Service Pack 1 to your development environment before gathering these files to include the latest security and stability fixes. Microsoft OLE DB Provider for Visual FoxPro 8.0

You're looking for a report on "Visual FoxPro 8 Portable". Here's what I found:

Overview

Visual FoxPro 8 Portable is a free, downloadable, and portable version of the Visual FoxPro 8 development environment. Visual FoxPro (VFP) is a powerful, object-oriented, and event-driven programming language and development environment created by Microsoft.

Key Features

The portable version of Visual FoxPro 8 offers the following features:

  1. Complete Development Environment: Includes the VFP8 compiler, debugger, and design tools.
  2. No Installation Required: Can be run directly from a USB drive or any folder without installation.
  3. Database Development: Supports creation and management of databases, including data modeling, SQL development, and data manipulation.
  4. Object-Oriented Programming: Supports object-oriented programming (OOP) concepts, such as classes, objects, inheritance, and polymorphism.

Specifications

  • Operating System: Windows XP/Vista/7/8/10 (32-bit and 64-bit)
  • Processor: Intel Pentium or compatible processor
  • Memory: 256 MB RAM (512 MB recommended)
  • Disk Space: 500 MB free disk space

Advantages

The portable version of Visual FoxPro 8 offers several advantages:

  1. Convenience: Can be carried on a USB drive and used on any Windows machine without installation.
  2. Flexibility: Allows developers to work on projects without requiring administrative privileges or affecting the host machine's configuration.
  3. Cost-Effective: Free to download and use.

Disadvantages

Some limitations and potential drawbacks:

  1. Limited Support: As a portable version, it may not receive official support or updates from Microsoft.
  2. Potential Compatibility Issues: May not work seamlessly with newer operating systems or software configurations.
  3. Security Risks: Using a portable version of a development environment may pose security risks if not used properly.

Conclusion

Visual FoxPro 8 Portable is a useful tool for developers who need a reliable and feature-rich development environment without the overhead of installation. While it offers several advantages, it is essential to consider the potential limitations and risks associated with using a portable version of a development environment.

The story of Visual FoxPro (VFP) 8.0 "Portable" is one of a legendary database tool that refused to die, kept alive by a community that valued speed and simplicity over modern bloat. Released on February 1, 2003, VFP 8.0 was one of the most significant updates in the software's history, introducing structured error handling, better XML support, and enhanced data interoperability. The Quest for Portability

The term "portable" in the context of Visual FoxPro 8.0 typically refers to two distinct community-driven practices:

Thumb Drive IDEs: Unlike modern software that requires heavy installation and registry entries, developers discovered that VFP 8.0 could be configured to run directly from a USB thumb drive. This allowed developers to carry their entire environment—compilers, tools, and databases—in their pocket, working on any Windows machine without a full installation.

The "Zero-Server" Database: VFP was uniquely portable because its relational database engine was built-in. It didn't require a dedicated server like SQL Server or Oracle; the data lived in simple .dbf files in a folder, making the entire application easy to move or deploy across different systems. Key Features of the VFP 8.0 Era Impact on Developers CursorAdapter Class

Provided a uniform way to handle local and remote data (SQL Server, Oracle). XMLAdapter Class

Enabled easier data exchange with modern web services and .NET compatible solutions. Try/Catch Handling

Brought structured error handling to the language, making apps more stable. UI Enhancements

Added auto-anchoring of controls and support for Windows XP Themes.

To create a Visual FoxPro 8.0 (VFP 8) application, you must package the executable with its specific runtime libraries in the same folder. This allows the program to run from a USB drive or local directory without a formal installation. Stack Overflow 1. Essential Runtime Files

For a standard VFP 8 application to run, the following core files must be located in the same directory as your compiled : The main runtime library.

: The multi-threaded runtime (required if using COM objects or background tasks). vfp8renu.dll

: The English language resource file (use a different version if your app uses another language, such as vfp8rdeu.dll for German). msvcr70.dll : The Visual C++ 7.0 runtime required by VFP 8. gdiplus.dll : Required for modern graphics and form rendering. Flylib.com 2. Optional Dependencies

If your application uses specific features, you may need additional files in the folder: XML Support msxml4.dll msxml4a.dll msxml4r.dll if your app uses the XMLAdapter or other XML functions. : If you need external database connectivity, the Microsoft OLE DB Provider for VFP 8.0 (vfpoledb.dll) may be required. 3. Portable Implementation Guide

Follow these steps to build and deploy your portable application: Compile the Executable : In the VFP 8 IDE, open your project ( ) and click Executable to generate your Create the Portable Folder : Create a new folder (e.g., MyPortableApp ) on your computer or USB drive. Copy Files : Place your generated and all the files listed in the Essential Runtime Files section into this folder. Handle Data Paths Avoid hard-coding drive letters. Use relative paths (e.g.,

) to ensure the app can find its database regardless of the drive letter assigned to the USB. FULLPATH(CURDIR())

functions in your startup code to programmatically determine where the application is running. Manage Temp Files : VFP creates temporary files (like

). By default, these may try to write to the host computer's temp folder. You can redirect these to the USB folder using a Config.fpw file in your application folder with the command: TMPFILES = .\Temp 4. Technical Considerations Microsoft OLE DB Provider for Visual FoxPro 8.0

Visual FoxPro 8 (VFP 8) can be made portable by including the required runtime DLL files in the same folder as your application's executable

. This allows the program to run on guest computers without needing a formal installation or administrator privileges. Stack Overflow Required Files for Portability

To create a portable VFP 8 environment, you typically need to copy these core runtime files into your application's root directory: : The main Visual FoxPro 8 runtime. VFP8RENU.DLL

: The English language resource file (or the specific localized version for your region). MSVCR70.DLL : The Microsoft C Runtime library required by VFP 8. gdiplus.dll : Often required for modern graphics rendering in VFP 8. Informer Technologies, Inc. Key Considerations


Is a Pre-Made "Visual FoxPro 8 Portable" Download Safe?

Warning: You will find websites offering "VFP 8 Portable.7z" or "PortableApps.com" style versions. Do not download these.

  • Legality: Distributing VFP 8 without a license is software piracy. Microsoft still holds copyright (now owned by an external firm after discontinuation, but still enforced).
  • Malware: VFP 8 is old. Malicious actors inject ransomware into these portable packs because they target legacy developers.

Best Practice: Build your own from your legitimate media. If you lost your CD, use the "Visual FoxPro 8.0 SP1" downloadable archive from the Internet Archive (as an archival copy) – but only if you possess a valid license key.

Visual FoxPro 8 Portable: Reviving a Legacy Database Titan on Modern Systems

Top 5 Pitfalls of Visual FoxPro 8 Portable (And Solutions)

3. Side-by-Side Versioning

You can have VFP 9 installed natively, but keep a portable VFP 8 on your desktop to test compatibility without uninstalling anything.

Final Recommendation

Instead of chasing a “portable VFP 8”, consider:

  1. Install VFP 9 runtime (properly) – it's tiny and officially redistributable.
  2. Use virtualization (e.g., Portable VirtualBox with Windows XP) for full legacy environment.
  3. Run from network share – VFP 8 works fine from a mapped drive with proper permissions.

If you must have portability, build your own from a licensed source — it’s safer and more reliable.

You're looking for Visual FoxPro 8 Portable.

Visual FoxPro 8 is a discontinued database management system and programming language developed by Microsoft. While I couldn't find an official portable version of Visual FoxPro 8, I can offer some insights and potential alternatives:

What is a portable application? A portable application is a software program that can be run from a portable storage device, such as a USB drive, without requiring installation on the host computer.

Challenges with Visual FoxPro 8 Visual FoxPro 8 is a legacy application that was designed for Windows 98, ME, NT, 2000, and XP. It's not natively compatible with modern Windows versions, which may make it difficult to run.

Potential solutions:

  1. Visual FoxPro 8 runtime libraries: You can download the Visual FoxPro 8 runtime libraries from Microsoft's website. These libraries allow you to run Visual FoxPro applications on a computer without installing the full Visual FoxPro 8 development environment.
  2. Portable Visual FoxPro: There are some third-party websites that offer portable versions of Visual FoxPro, but I couldn't verify their legitimacy or compatibility. Be cautious when downloading software from unverified sources.
  3. Virtualization or emulation: You can consider using virtualization software (e.g., VMware, VirtualBox) or emulation tools (e.g., DOSBox) to run Visual FoxPro 8 on a modern computer. However, this may require a valid license and a compatible operating system.
  4. Migration to a newer platform: If you're still using Visual FoxPro 8 for development or business purposes, it might be time to consider migrating to a newer platform, such as .NET, Azure, or other modern database management systems.

Before proceeding

  • Ensure you have a valid license for Visual FoxPro 8.
  • Understand the potential risks and limitations of running a legacy application on modern hardware and software.
  • Be cautious when downloading software from third-party sources.

If you're looking for a specific portable version of Visual FoxPro 8, I recommend searching for verified and legitimate sources. Alternatively, consider exploring modern database management systems and development tools that can meet your needs.

Visual FoxPro 8 (VFP 8) remains a cornerstone for developers maintaining data-centric legacy applications. While Microsoft never released an official "portable" version of the IDE, the concept of a portable Visual FoxPro 8 environment is highly sought after for developers who need to support old systems without performing a full, registry-heavy installation on modern hardware. What is Visual FoxPro 8 Portable?

In the developer community, "portable" refers to a configuration that allows the VFP 8 IDE or its compiled applications to run directly from a USB drive or a standalone folder without a formal installation. This is achieved by manually grouping the core executable (vfp8.exe) with its required runtime dynamic-link libraries (DLLs).

Key Runtime Files: To function portably, VFP 8 typically requires vfp8r.dll, vfp8t.dll, and vfp8renu.dll in the same directory as the application or IDE executable.

Use Cases: It is primarily used for quick bug fixing on client machines, running legacy data-processing scripts without local installation, and maintaining "clean" developer environments on modern Windows 10 or 11 systems. Core Features of Visual FoxPro 8

Released in 2003, VFP 8 introduced several major architectural enhancements that made it a "must-have" upgrade over previous versions.

Structured Error Handling: Introduced the TRY...CATCH...FINALLY construct, significantly improving how developers manage runtime errors compared to the older ON ERROR commands.

New Base Classes: VFP 8 debuted several powerful classes, including:

CursorAdapter: A unified way to access data from different sources (native VFP, SQL Server, XML) using a single object.

XMLAdapter: Enhanced support for hierarchical XML, making it easier to exchange data with modern web services.

Empty Class: A ultra-lightweight class with no intrinsic properties or methods, perfect for high-speed object instantiation.

IDE Modernization: The IDE gained dockable windows, a Task Pane Manager for better project organization, and a "Toolbox" for dragging and dropping frequently used classes and snippets. Technical and Legal Considerations

Using a portable version of VFP 8 comes with specific challenges and responsibilities:


Preferencias de usuario para las Cookies
Estamos utilizando las cookies para asegurarnos de que le podemos ofrecer el mejor servicio posible en este sitio web. Si rechaza el uso de las cookes, es posible que esta web no funcione como estaba previsto por el equipo de programadores.
Aceptar todo
Rechazar todo
Leer más
Estadísticas
Las cookies de preferencias permiten a la página web recordar información que cambia la forma en que la página se comporta o el aspecto que tiene, como su idioma preferido o la región en la que usted se encuentra.
Google Analytics
Aceptar
Rechazar
Necesarias
Las cookies necesarias ayudan a hacer una página web utilizable activando funciones básicas como la navegación en la página y el acceso a áreas seguras de la página web. La página web no puede funcionar adecuadamente sin estas cookies.
Hubor-proteus para el control de sus preferencias de uso de cookies en esta web
Aceptar
Rechazar
Guardar