Ver Mensaje Individual
  #3  
Antiguo 02-05-2016
xangiesaurx xangiesaurx is offline
Miembro
NULL
 
Registrado: feb 2016
Posts: 57
Reputación: 9
xangiesaurx Va por buen camino
Cita:
¿ Que hacen OptionRunLogProject() y SendRunLogProject() ?, ese par de funciones no pertenecen a Delphi o a la API de Windows.
Gracias por tu pronta respuesta, aquí esta el código

Código Delphi [-]
 procedure TTitleBoxMainWnd.SendRunLogObject(ObjState: TActionState; const ObjName: WideString);
var M: TLogMessageType;
begin
  if (not FAsRunLog) or (ObjName = EmptyStr) then
    Exit;

  case ObjState of
    asPlay: begin if not OptionEnabled(sfObjectStart) then Exit; M := ltPlay; end;
    asStop: begin if not OptionEnabled(sfObjectStop) then Exit; M := ltStop; end;
//    asPause: ; // Not used !!!
  else
    Exit;
  end;

  if FFirstLogSend then
    SendRunLogSetupData;

  SendRunLogEx(cmdStringCommand, ObjName, M);
end;
Responder Con Cita