View Single Post
  #2  
Old 04-05-2005, 06:16 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,013
That trick only works for multi-line edit controls. Some ways to do this:

1) Use a Set Macro action to assign the macro value instead of as a parameter of the Subroutine Call step.

2) Store the multi-line value in a project macro, and reference that macro from the parameter value field of the Subroutine Call step.

3) Use script code in the parameter value to insert newlines. If VBScript is your default script language:
first line[vbCrLf]second line...
Reply With Quote