doc Posted June 19, 2007 Share Posted June 19, 2007 how can I get two string parameters to exist on the same line? This works: PRM_Template(PRM_STRING, 2, &names[0]), but Ideally I'd like each of the fields to have a distinct name. on a similar note is there a way to create a string parameter and hide the label that appears in the UI? Many thanks L Quote Link to comment Share on other sites More sharing options...
rjpieke Posted June 19, 2007 Share Posted June 19, 2007 how can I get two string parameters to exist on the same line? *untested suggestion* Have you tried using (PRM_STRING | PRM_TYPE_JOIN_NEXT) for the first parm and then just PRM_STRING for the second one? Quote Link to comment Share on other sites More sharing options...
edward Posted June 19, 2007 Share Posted June 19, 2007 If that doesn't work, it very well might be impossible. Quote Link to comment Share on other sites More sharing options...
doc Posted June 19, 2007 Author Share Posted June 19, 2007 *untested suggestion*Have you tried using (PRM_STRING | PRM_TYPE_JOIN_NEXT) for the first parm and then just PRM_STRING for the second one? I did this and it seemed to work: PRM_Template((PRM_Type)(PRM_STRING | PRM_TYPE_JOIN_NEXT), 1, &names[0]), PRM_Template(PRM_STRING, 1, &names[1]), thanks for the help rob! Luca Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.