*Migration Capabilities - What Can Be Migrated
**Date:** 2026-02-19
**Status:** Beta testing
**Success Rate:** 90-95% for recoverable files
---
## Executive Summary
WebX can migrate Visual FoxPro applications **even without original source code**, as long as you have the runtime files (.fxp, .vcx, .scx, .app). Only final compiled executables (.exe only) cannot be migrated.
---
## What Can Be Migrated
### 1. Loose Runtime Files (BEST CASE - 95%+ Success)
**Files Required:**
-
-
-
-
-
-
**Recovery Quality:**
- `.vcx/.scx/.frx/.mnx` → **100% PERFECT** (Fully human-readable)
- `.fxp` → **Logic 100%, variable names generic** (Var1, Var2, etc. but context makes them obvious)
**Example Deployment Structure:**
```
C:\BankApp\
├── main.fxp ← Can decompile to main.prg
├── login.fxp ← Can decompile to login.prg
├── forms\
│ ├── customer.scx ← 100% PERFECT recovery
│ ├── invoice.scx ← 100% PERFECT recovery
├── classes\
│ ├── business.vcx ← 100% PERFECT recovery
│ ├── controls.vcx ← 100% PERFECT recovery
├── reports\
│ └── invoice.frx ← 100% PERFECT recovery
└── data\
└── customers.dbf
```