PDA

View Full Version : EurekaLog Viewer 2.0


Anonymous
05-May-2005, 06:43 AM
Would it be posible to save and restore the EurekaLog Viewer form's position, size and state. I always have to resize the form in order to see all the infomation in the log.

Thanks
Sean.
:D

admin
07-May-2005, 11:02 AM
Would it be posible to save and restore the EurekaLog Viewer form's position, size and state. I always have to resize the form in order to see all the infomation in the log.

Thanks
Sean.
:D

I'm working to add this new feature in the next release! :-)

Ken Schafer
26-Sep-2005, 09:26 PM
Also, could you add the following code to the procedure
Generate_CallStack(Index: Integer); routine in EViewer.pas so that when I
try to open a password protected file it doesn't just give me an error
message 'Invalid password.' but rather gives me a chance to ENTER a new
password?

Also it would be nice to be able to save a default password to be used for
all password encrypted files.

I can't make this change myself because I don't have the Quantum Grids
component.

var
NewPassword: String;

....

if (Copy(UnitName, 1, 1) = '?') then // Encrypted...
begin

//Start addition
if (PwdEdit.Text = '') then //we need a password
begin
//initialize to empty
NewPassword:='';
//if the user enters a password then
if InputQuery('Password Required', 'Password:', NewPassword)
and
(Trim(NewPassword) <> '') then
begin
pwdEdit.Text:=NewPassword;
EEncrypt.InitKey(PwdEdit.Text);
end;
end;
//End addition

Ken Schafer
26-Sep-2005, 09:29 PM
Also, if you are using Password Encrypted Log Files it should NOT password
encrypt them while you're running DELPHI as if you get an error while in the
debugger, you want to see the actual log, not just encrypted text.

- Ken

admin
29-Sep-2005, 08:31 AM
Ken Schafer wrote:
> Also, if you are using Password Encrypted Log Files it should NOT password
> encrypt them while you're running DELPHI as if you get an error while in the
> debugger, you want to see the actual log, not just encrypted text.
>
> - Ken

I can work on it! :)

--
Best regards...

Fabio Dell'Aria.
----------------
http://www.eurekalog.com
Catch every BUG showing line n.