Thema: Delphi Systemfehler Code 6

Einzelnen Beitrag anzeigen

ONeill

Registriert seit: 17. Nov 2011
28 Beiträge
 
#3

AW: Systemfehler Code 6

  Alt 21. Jan 2012, 11:57
flog is ein weiters Form, indem das Memo log eingebunden ist

Das ist mir so noch gar nicht aufgefallen, das ich das erst schließe und dann wieder beschreibe
Neue Funktion ist somit dann:
Delphi-Quellcode:
function Tfmain.installcwm:Boolean;
begin
  fmain.RunCaptured(ExtractFilePath(Application.Exename), 'adb', 'reboot bootloader');
  Delay(500);
  flog.log.Lines.Add('reboot into bootloader');
  Delay(500);
  fmain.RunCaptured(ExtractFilePath(Application.Exename), 'fastboot', 'flash recovery cwm.img');
  flog.log.Lines.Add('install CWM recovery');
  Delay(1000);
  fmain.RunCaptured(ExtractFilePath(Application.Exename), 'fastboot', 'reboot');
  Delay(500);
  flog.log.Free;
  result := true;
end;
Ist aber für das Problem keine Lösung

Geändert von SirThornberry (21. Jan 2012 um 18:37 Uhr)
  Mit Zitat antworten Zitat