RE:Archivo txt = variable string
sabes que las variables de tipo String puede contener hasta 2^31 caracteres
************************************************************************
\'declaramos la variable
dim strVariable as string
dim NumFichero as Integer
NumFichero = freefile
\'abrimos el archivo .txt para lectura
OPEN nombreFichero.txt FOR Input As freefile
\'asignamos a la variable el contenido del archivo
strVariable =Input(LOF(1), #NumFichero)
\'Cerramos el archivo
Close NumFichero
*******************************************************************
¡ojo! el tamaño del archivo debe ser menos de 64K