Re: create a form with Skill that create a file from library manager



Hi !

I'm not actually sure I've understand the question but a quick test on
my side gave a pretty good interpretation of the \n
This is what I've run on my box :
procedure( rkCreateMLTextForm()
let((myInitString myNewString)
myString="Here we go !!"
myNewString="Here we go Again !!"
sprintf(myInitString "%s\n%s\n%s\n%s ..." myString myString
myString myString)
myMLText = hiCreateMLTextField(
?name 'myMLText
?prompt "Type in Text"
?value myInitString
)
myForm = hiCreateAppForm(
?name 'myForm
?formTitle "Muti Line text Form Sample"
?fields list( list(myMLText 0:0 600:200 120))
)
myMLText~>value = strcat(myMLText~>value "\n" myNewString "\n\n"
myNewString)
hiDisplayForm(myForm)
)
)

Hope it helps !

Riad.
.