Article ID: 120251
Article Last Modified on 7/11/2005
JumpId("C:\\MYAPP\\HLPFILE\\MYHLP.HLP","topicx")
But if JumpId() is used as the command associated with a menu item, you
need to use four backslashes to separate the subdirectory names within the
JumpId command, which is itself part of an InsertItem() command. For
example:
InsertItem("MNU_FILE","my_id","Jump",
"JumpId('C:\\\\MYAPP\\\\HLPFILE\\\\MY HLP.HLP','topicx')",0)
To avoid having to modify the filename parameter depending on how the
function is called, Microsoft recommends that you use a single forward
slash (/) to separate subdirectory names within the filename. For example:
JumpId("C:/MYAPP/HLPFILE/MYHLP.HLP","topicx")
A single forward slash will work regardless of how the command is called.
Additional query words: 3.10 3.50 4.00 95
Keywords: KB120251