Ver Mensaje Individual
  #13  
Antiguo 01-07-2015
jofebas jofebas is offline
Miembro
 
Registrado: nov 2010
Posts: 50
Reputación: 14
jofebas Va por buen camino
lo subo a una tabla de mysql con Zeos este el el código

Código Delphi [-]
  if not (ZQuery.State in [dsedit, dsinsert]) then
  begin
    ZQuery.Edit;
    ZQuery.Append;
    Try
        ZQuerynombre.AsString := Edit1.Text;
        ZQueryfecha.AsDateTime := Date1.Date;
        ZQueryprog.LoadFromFile('Ruta del *.exe');
        ZQuery.Post;
          finally

      end;
      ShowMessage('--- OK ---');
      ZQuery.Close;

y así lo bajo

Código Delphi [-]
  ZQuery.Open;
  ZQuery.First;
  ZQueryPROG.SaveToFile('ruta del archivo');
Responder Con Cita