Yesterday, 05:25 AM
(This post was last modified: Yesterday, 05:54 AM by Stuart McLachlan.)
(Yesterday, 05:06 AM)Gary Beene Wrote: Howdy, Stuart!
Thanks for the feedback! I had placed all icons in "icons\" and failed to change the #Resurce statements to something like this...
Code:#Resource Icon xlogo, "icons\n.ico"
I also just added some lines to resolve the error - caused by not including a default crm.txt in the distribution.
Yep, that fixed it

I was going to suggest a timestamp, but looking at the source code Ctrl+D is already there

Suggest update (quick and dirty version

'
Code:
CASE %WM_COMMAND
CASE %WM_HELP
LOCAL ws AS WSTRING
ws = "Ctrl+Del Delete"
ws &= $LF & "Ctrl+D InsertDate"
ws &= $LF & "Ctrl+E ShowAll"
ws &= $LF & "Ctrl+F SearchDown"
ws &= $LF & "Ctrl+I InsertDelimiter"
ws &= $LF & "Ctrl+R SetFocusRE"
ws &= $LF & "Ctrl+M Mute"
ws &= $LF & "Ctrl+N NextREDown"
ws &= $LF & "Ctrl+S SaveCFN"
ws &= $LF & "Ctrl+Shift+F SearchUp"
ws &= $LF & "Ctrl+Shift+s SaveAll"
? ws,, "Hotkeys"
'