Ver Mensaje Individual
  #6  
Antiguo 15-08-2006
Avatar de delphi.com.ar
delphi.com.ar delphi.com.ar is offline
Federico Firenze
 
Registrado: may 2003
Ubicación: Buenos Aires, Argentina *
Posts: 5.932
Reputación: 27
delphi.com.ar Va por buen camino
Si trebajas en C++ Builder, no tendrías que tener muchos inconvenientes en traducir tan pocas líneas:
Código:
#include <ShellAPI.h>
...
void __fastcall TForm1::Button1Click(TObject *Sender)
{
  ShellExecute(Handle, "open", "c:\MiArchivo.doc", NULL, NULL, SW_SHOW);
}
__________________
delphi.com.ar

Dedique el tiempo suficiente para formular su pregunta si pretende que alguien dedique su tiempo en contestarla.
Responder Con Cita