FoxPro/Visual FoxPro - Abrir HTML

 
Vista:

Abrir HTML

Publicado por JUAN CARLOS (7 intervenciones) el 06/11/2001 23:18:50
Saludos.
Quisiera saber como abrir un pagina html desde Visual Fox.

Gracias por la Ayuda!.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Abrir HTML

Publicado por Japiper (93 intervenciones) el 16/11/2001 17:09:43
DECLARE INTEGER ShellExecute IN "Shell32.dll" ;
INTEGER hwnd, ;
STRING lpVerb, ;
STRING lpFile, ;
STRING lpParameters, ;
STRING lpDirectory, ;
LONG nShowCmd

archivo="c:\paginas\pepe.html"
if !file(archivo)
* Abre el documento .html Este documento debe existir
=Shellexecute(0,"Open",archivo,"","",0)
endif

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar