Page 1 of 1
CKS bugs
Posted: 13 Apr 2007 15:24
by surrender
1. when I want to set a KS Ctrl+R to say "Info clipboard>Large icon" in the file category, then the focus moves to "Rename", "Restart without saving" and "Rename special". if i use Ctrl+O then focus moves to "Open selected item"... and so forth. Obviously, the find-as-you-type (or Type-ahead find) is still active here.
2. In the file category, I can set KS to the submenus of configuration files, but they are non-functional.
PS: I dont know if I should create a new post for every little bug i find. or Don should consider making "CKS related bugs" sticky post for a while until CKS is done.
Re: CKS bugs
Posted: 14 Apr 2007 08:59
by admin
surrender wrote:1. when I want to set a KS Ctrl+R to say "Info clipboard>Large icon" in the file category, then the focus moves to "Rename", "Restart without saving" and "Rename special". if i use Ctrl+O then focus moves to "Open selected item"... and so forth. Obviously, the find-as-you-type (or Type-ahead find) is still active here.
2. In the file category, I can set KS to the submenus of configuration files, but they are non-functional.
PS: I dont know if I should create a new post for every little bug i find. or Don should consider making "CKS related bugs" sticky post for a while until CKS is done.
1. Yes, I removed the possibility to press a new key with the focus in the functions list. There's no way (that I know) to suppress the find-as-you-type.
2. Yep, will work next beta.
3. Good idea.
Re: CKS bugs
Posted: 14 Apr 2007 20:23
by jacky
admin wrote:1. Yes, I removed the possibility to press a new key with the focus in the functions list. There's no way (that I know) to suppress the find-as-you-type.
hmm... is it another one of Don's controls, or a regular Listbox?? Cause with regular listbox, I'd say this works:
Code: Select all
Private Sub List1_KeyPress(KeyAscii As Integer)
KeyAscii = 0
End Sub
And as I said before, I really like pressing key on function list, assigning, moving to the next one, so (if possible) you shouldn't remove this feature!
Re: CKS bugs
Posted: 14 Apr 2007 23:27
by admin
jacky wrote:admin wrote:1. Yes, I removed the possibility to press a new key with the focus in the functions list. There's no way (that I know) to suppress the find-as-you-type.
hmm... is it another one of Don's controls, or a regular Listbox?? Cause with regular listbox, I'd say this works:
Code: Select all
Private Sub List1_KeyPress(KeyAscii As Integer)
KeyAscii = 0
End Sub
And as I said before, I really like pressing key on function list, assigning, moving to the next one, so (if possible) you shouldn't remove this feature!
Wow. Thanks for the lesson!
