Quenton Carr 23.Mar.11 10:57 AM a Web browser Notes Client6.5.4Windows XP
Hi all,
I'm at my wits end searching for an answer to this problem. I'm not a domino developer and have pieced together a solution. I need to create program to create signature files which I'm doing with the one thats on the net. It basically uses a button in an email using lotus script it prompts the user to key in several pieces of information. However one of the pieces of information I want to record is an address. I don't know how to obtain more than one line of code as I'm using this format at the moment. I'm using input boxes but need to format an address which could be formatted several lines long. I don't want to prompt for every line. Any ideas ?
Thanks.
REM set up user info list
userinfo("name") = "Your Name"
userinfo("title") = "Your Job Title"
userinfo("phone") = "+44 191 2593100"
userinfo("fax")= "Enter Fax Number"
userinfo("mobile") = "Enter Mobile Number"
userinfo("email") = "first.last@formica.com"
' userinfo("link_url") = "www.formica.com"
REM prompt for user info
Msgbox "You are about to update your signature file." & Chr(10) &_
"", 64, "Signature Creation"
Print "Prompting for user info..."
Forall u In userinfo
u = Inputbox("Please enter your " & Listtag(u) & ":", Ucase(Listtag(u)), u)
End Forall