rejetto forum

Testing build #206

rejetto · 41 · 24428

0 Members and 1 Guest are viewing this topic.

Offline Baggio

  • Occasional poster
  • *
    • Posts: 55
    • View Profile
    • Всё для Datalife Engine (DLE) in UA-IX
Думаю, что возможно проблема в настройках моего сервера, за которым я нахожусь. Во FreeBSD уменьшил скорее всего канал. Я всё ещё буду тестировать HFS, если реально, что-то прояснится, я сразу же напишу!

I think that perhaps the problem is my server settings, for which I am. In FreeBSD reduced the likely channel. I'm still going to test HFS, if real, something becomes clearer, I immediately write!
DLE.IN.UA  Всё для Datalife Engine (DLE) in UA-IX

linux-bsd.in.ua


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
ok guys, you'll have nice changing icons next build :)


Offline MarkV

  • Tireless poster
  • ****
    • Posts: 764
    • View Profile
The crash system does not identify the vista editions properly... Vista Professional does not exist.

you mean the error log in hfs?

Yes. I guess you already know the editions are
  • Starter
  • Home Basic
  • Home Premium
  • Business
  • Enterprise
  • Ultimate

Plus some 'N', 'K' and 'KN' editions.
http://worldipv6launch.org - The world is different now.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
ah, right.
it's a bug in a library (lack of adequate support, i'd say).
i downloaded the latest version now, but the problem was not addressed yet.
i reported the bug to the authors
http://homepages.codegear.com/jedi/issuetracker/view.php?id=4522


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
all right, rejetto when you use a new library, can you give us the download link of this (not the html page), we can download it for the french version thanks
 ;)


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
bug report: on deleting accounts

create some users and groups as picture 1

click on "ok"

F7 to go accounts options , select one group (not necessary the last), delete it and click on "cancel",

F7 to go accounts options, and look on accounts  deleted accounts not appear and the last is duplicate (picture2):o

rejetto: this  was tested with original sources


Offline MarkV

  • Tireless poster
  • ****
    • Posts: 764
    • View Profile
ah, right.
it's a bug in a library (lack of adequate support, i'd say).
i downloaded the latest version now, but the problem was not addressed yet.
i reported the bug to the authors
http://homepages.codegear.com/jedi/issuetracker/view.php?id=4522

Quote from: cycocrew
Added GetWindowsEdition and GetWindowsEditionString functions in JclSysInfo in JCL revision 2540
;D
http://worldipv6launch.org - The world is different now.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
all right, rejetto when you use a new library, can you give us the download link of this (not the html page), we can download it for the french version thanks ;)

all libs are in the file dev-notes.txt
i link web pages because file names change faster than pages.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile

Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
Quote
// accounts
lastAccountSelected:=-1;
accountsBox.Clear();
for i:=0 to length(accounts)-1 do
  begin
  with accounts do wasUser:=user; // remember original name for tracking possible later renaming
  addAccountInList(accounts);
  setlength(tempaccounts,i+1);
  tempaccounts:=accounts;

  end;
tempAccounts:=Accounts;
lastAccountSelected:=-1;
loadAccountProperties();

I found only this solution for the passage by values instead of the passage by dynamic addressing owed in tempAccounts:=Accounts;
On the other hand I cannot say if it is the most elegant and the most effective, I look forward to the opinion of our expert ( the leader). ;)


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
the reason of the bug is that in Delphi when you assign a dynamic array to another variable, the array is not copied, just linked. And more, when you change the array content, this will reflect also to other copies.
the way to unlink an array from others is to call setlength(a, length(a))