This is minor issue that has taken on some importance because it happens so much. I use both Excel and InfoQube grid to create lists within cells. In both cases, you have to enter a keyboard shortcut to start a new line.
The problem is: in Excel, the shortcut is Alt-return; in InfoQube it's Shift-return. It's an annoyance because I can never remember which is which. At the least I have to pause and think about it and it's gotten to the point that I have a mental block.
I'd like to change either keyboard shortcut to match the other but can't figure out how. Neither shortcut is listed under InfoQube shortcuts. In Excel 2007 it looks like you have to download additional software and learn how to use it to change shortcuts.
Any ideas on how I can resolve what should be a simple problem?
Wayne
Comments
;----------------------Shortcut for InfoQube Alt+Enter becoming Shift+Enter
!ENTER::
if WinActive("ahk_class ThunderRT6MDIForm")
{
Send {Shift down}{Enter}{Shift up}
}
else
{
Send {Alt down}{Enter}{Alt up}
}
return
;----------------------
Shortcut for InfoQube Alt+Enter becoming Shift+Enter