User (Legacy) Posted November 25, 2003 Report Share Posted November 25, 2003 Hi, I Have Been able to create 2 custom commands to the right click menu, but how do add my own parameter? example: Set Cmds = ObjChart.Commands Cmds(CFX_ID_URL0).Text = "View These" Cmds(CFX_ID_URL1).Text = "View those" Set MarkerCmdList = ObjChart.Commands(CFX_ID_CM_SERIES) nCmds = MarkerCmdList.Count MarkerCmdList.InsertSubcommands 3,nCmds MarkerCmdList.SubCommandID(nCmds) = CFX_ID_SEPARATOR MarkerCmdList.SubCommandID(nCmds+1) = CFX_ID_URL0 MarkerCmdList.SubCommandID(nCmds+2) = CFX_ID_URL1 what i cant work out is tell command one to include another parameter (example: page.asp?cmd=these) Thanks Link to comment Share on other sites More sharing options...
Software FX Posted November 25, 2003 Report Share Posted November 25, 2003 A parameter will be added to the URL: CIE_Cmd=<ID> ID is 0 for CFX_ID_URL0, 1 for CFX_ID_URL1, etc. -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.