Ver Mensaje Individual
  #2  
Antiguo 01-10-2010
rrf rrf is offline
Miembro
 
Registrado: ago 2003
Ubicación: S/C Tenerife, España
Posts: 454
Reputación: 21
rrf Va por buen camino
Smile

Hola.
Creo que esto te podría servir, si he entendido bien la pregunta:

Código Delphi [-]
savedialog1.filename:='archivo.txt';
if savedialog1.Execute 
  then...
o bien

Código Delphi [-]
vv:='archivo.txt';  // vv es una variable string
savedialog1.filename:=vv;
if savedialog1.Execute 
  then...

Saludos
Responder Con Cita