By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!If that's so, then feature request's ought to be implemented quickly ... eh? :-)You created your own help viewer? I'm impressed!
Nice! ... especially the single instance.
But can it be made to
1. remember the last view of the Contents/Index/Search pane (or always open with a chosen view)? I generally prefer the index
2. be made to show the pane mentioned above when I've gone directly to a topic?
But can it be made to [...]
2. be made to show the pane mentioned above when I've gone directly to a topic?
alias help `taskend /f %@pid[hh.exe] 2> NUL & *help`
INT WINAPI KEYHANDLER( LPKEYINFO lpki )
{
if ( lpki->nKey == F1 || lpki->nKey == CTL_F1 )
{
WCHAR szCmd[64] = L"TASKEND /f %@PID[hh.exe] 2> NUL";
Command(szCmd, 0);
}
//...
}
Any chance Control-F could be enabled? I miss it already....
There's just too much functionality missing in the new help.
A couple of rather heavy-handed tricks gets rid of the multiple instance problem in v19. I wish I had thought of them a long time ago. No doubt Rex could do the same a bit more elegantly.
Code:alias help `taskend /f %@pid[hh.exe] 2> NUL & *help`
Code:INT WINAPI KEYHANDLER( LPKEYINFO lpki ) { if ( lpki->nKey == F1 || lpki->nKey == CTL_F1 ) { WCHAR szCmd[64] = L"TASKEND /f %@PID[hh.exe] 2> NUL"; Command(szCmd, 0); } //... }
Another bad thing ... the index doesn't respond to typing a keyword.
And ...
You can't navigate TOC, Index, or search results with Up/Down.
It doesn't remember the position of the splitter
Beauty is in the eye of the beholder, I guess. The HTML help has all those features that you say the new help doesn't support. So I gave up forward-backward navigation to have a single instance; I didn't use that often anyway. But I still have the index always showing, a keyword box that takes me directly to a topic in the index, a splitter that remembers its position, Ctrl-F search in the document window.Your cure is even worse than the disease!
Beauty is in the eye of the beholder, I guess. The HTML help has all those features that you say the new help doesn't support. So I gave up forward-backward navigation to have a single instance; I didn't use that often anyway. But I still have the index always showing, a keyword box that takes me directly to a topic in the index, a splitter that remembers its position, Ctrl-F search in the document window.
Oh yeah, it also doesn't remember the number of results per page in the search pane.