rejetto forum
February 12, 2012, 01:40:00 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: This forum is free, you do NOT need to register to post. But you may.
PROBLEMS? QUESTIONS? CLICK HERE!
Fill the survey!
 
   Home   Help Search Login Register  
Pages: 1 [2] 3 4 5
  Print  
Author Topic: Testing build #269  (Read 5594 times)
0 Members and 1 Guest are viewing this topic.
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11759


View Profile
« Reply #15 on: September 09, 2010, 12:38:06 PM »

Update automatically is still broken.

ok, i reproduced it, and fixed it (hope) for next build (270).
this means you will still have the problem for this update.
Logged
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1469



View Profile WWW
« Reply #16 on: September 09, 2010, 01:12:04 PM »

Quote
Bug with:

Menu > Other options > User Accounts... Account list

To reproduce it:

- Create some Accounts
- Select one account in the list
- Click on the "rename" button

The last account of the list is selected (ready to be renamed).

the bug is confirmed and tested  Wink

several click on "add" give some accounts
select one account, not the last
click on button rename, then the last account is selected to be renamed  Angry
rename an account with F2 can't reproduce the bug   Cheesy


* add some account.png (2.85 KB, 142x215 - viewed 65 times.)

* select intermediate account.png (2.31 KB, 138x119 - viewed 220 times.)

* the last account is selected to be renamed.png (2.83 KB, 141x242 - viewed 65 times.)
« Last Edit: September 09, 2010, 01:15:14 PM by Mars » Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11759


View Profile
« Reply #17 on: September 09, 2010, 01:28:42 PM »

i already did this way, still cannot reproduce it.
please tell me exactly what you do with mouse and keyboard.
Logged
SilentPliz
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1023


....... chut ! shh!


View Profile WWW
« Reply #18 on: September 09, 2010, 01:35:47 PM »

Mouse only for test (but idem with keyboard selection)

- select an account in the middle of the list
- click on rename button
... the last account of the list is selected
« Last Edit: September 09, 2010, 06:34:09 PM by SilentPliz » Logged
Tha Jsta
Regular poster
**
Offline Offline

Posts: 27

thajsta@gmail.com
View Profile WWW Email
« Reply #19 on: September 09, 2010, 01:38:09 PM »

Damn! I have just noticed the same problem! I have created User 1 and User 2. The ‘can change password’ is at the top, then User 1 then User 2. I have JAWS point to User 1 then pressed the Rename button and it says User 2. Now I understand the bug.
Logged

CLICK HERE to visit the dopest West Coast Hip-Hop blog online.
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1469



View Profile WWW
« Reply #20 on: September 09, 2010, 03:10:31 PM »

the bug was until build 208 and was corrected from build 209 by replacing   accountsBox: TListView;   by the two components

   accountsBox: TListBox;
    inPlaceEditBox: TEdit;


and all was working

rejetto, why have you changed that since the build 268 or 269? Cry
« Last Edit: September 09, 2010, 03:12:53 PM by Mars » Logged
rejetto forum
« Reply #20 on: September 09, 2010, 03:10:31 PM »

Do you like this software? Consider even $2
 Logged
Tha Jsta
Regular poster
**
Offline Offline

Posts: 27

thajsta@gmail.com
View Profile WWW Email
« Reply #21 on: September 09, 2010, 03:15:56 PM »

@ Mars. I think he changed that because I needed some accessibility improvements for the user accounts panel. I am blind and use the JAWS For Windows screen reader, and now it is a lot more accessible than before. The only way you can rename an account is if you point to the account and press F2 on the keyboard instead of the Rename button. I tried it and it works.
« Last Edit: September 09, 2010, 03:17:28 PM by Tha Jsta » Logged

CLICK HERE to visit the dopest West Coast Hip-Hop blog online.
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1469



View Profile WWW
« Reply #22 on: September 09, 2010, 05:55:44 PM »

@rejetto

c'est bon maintenant , j'ai trouvé une parade au bug des comptes, il faut ajouter une ligne dans les sources comme cela

Quote
procedure ToptionsFrm.renaccountBtnClick(Sender: TObject);
begin
if accountsBox.selected = NIL then exit;
accountsbox.SetFocus;
accountsBox.Selected.editCaption();
end;

in the next build ? Wink
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11759


View Profile
« Reply #23 on: September 10, 2010, 06:46:14 AM »

Mouse only for test (but idem with keyboard selection)
- select an account in the middle of the list
- click on rename button
... the last account of the list is selected

that's exactly what i do, but the bug doesn't happen here.
I'm starting to think it may be related to the Windows version. I use 7, and you?

@mars, does that workaround fix the problem for you?
if it does, i will just include in next build.
here the focus is automatically moved to the accountsBox, no need for an extra setting. It may be Win7.
I didn't even remember i used the listview before! I was very surprised at your question. I had to change it for the reason jsta reported.
Logged
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1469



View Profile WWW
« Reply #24 on: September 10, 2010, 08:57:47 AM »

Quote
@mars, does that workaround fix the problem for you?
if it does, i will just include in next build.
You know me, i passed a lot of time (a very long) by testing full solution with some // before some lines to found the solution, yes it seems that the focus is loose with the mouse on the button RENAME.

Quote
here the focus is automatically moved to the accountsBox, no need for an extra setting. It may be Win7.
the solution tested under XP and IE6 ( the best browser to detect Cheesy)

Quote
I didn't even remember i used the listview before! I was very surprised at your question. I had to change it for the reason jsta reported.
I have all of sources except someone then i can retrive any change, i remeber you do the change from tlistbox to tlistview because of a bug exactly, but I do not remember any more a whom. Wink



If the bug persists in build 270, we shall find another solution for build 271   Cheesy Wink
« Last Edit: September 10, 2010, 08:59:31 AM by Mars » Logged
SilentPliz
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1023


....... chut ! shh!


View Profile WWW
« Reply #25 on: September 10, 2010, 11:09:26 AM »

I'm starting to think it may be related to the Windows version. I use 7, and you?

Indeed, I use XP. Wink  It's certainly that.

Mars's solution fix the bug ... for XP at least.


I didn't even remember i used the listview before! I was very surprised at your question. I had to change it for the reason jsta reported.

It was the workaround to obtain functionnal drag n' drop with the beta version of HFS in french language.
Mars working on too many versions at once.  Cheesy
« Last Edit: September 10, 2010, 11:11:49 AM by SilentPliz » Logged
TEA-Time
Experienced poster
***
Offline Offline

Posts: 45


View Profile
« Reply #26 on: September 12, 2010, 01:11:39 PM »

Hi rejetto,

Build 269.

I haven't used this feature for quite a while, so I'm not sure when it disappeared, and I've tried to search the forum for a reference to it with no luck.  What happened the option to right click a file and copy the URL that includes a specific user's credentials?

Thanks!
Logged
Tha Jsta
Regular poster
**
Offline Offline

Posts: 27

thajsta@gmail.com
View Profile WWW Email
« Reply #27 on: September 12, 2010, 01:14:29 PM »

@ Mars. You can not reproduce the bug when you use F2, because F2 is the only way that works. The rename button does not work unless if it is the last account in the list.
Logged

CLICK HERE to visit the dopest West Coast Hip-Hop blog online.
SilentPliz
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1023


....... chut ! shh!


View Profile WWW
« Reply #28 on: September 12, 2010, 01:43:07 PM »

I haven't used this feature for quite a while, so I'm not sure when it disappeared, and I've tried to search the forum for a reference to it with no luck.  What happened the option to right click a file and copy the URL that includes a specific user's credentials?

right click on an item in the VFS box > Copy URL with password  > ...
Logged
TEA-Time
Experienced poster
***
Offline Offline

Posts: 45


View Profile
« Reply #29 on: September 12, 2010, 01:53:43 PM »

right click on an item in the VFS box > Copy URL with password  > ...
Yes, that's where it was, but I'm asking because now I don't have that option any more.
Logged
Pages: 1 [2] 3 4 5
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!


Google visited last this page February 01, 2012, 06:37:41 AM
anything