I have this dialog table
Code:
dialog test {
  title "Blake's Email Program"
  size -1 -1 250 200
  option dbu

  text "To:", 1, 5 10 10 10 
  edit "", 2, 5 18 240 10, %ToAddress
  text "Subject:", 3, 5 33 240 10
  edit "", 4, 5 41 240 10, %Subject
  icon 8, 5 55 240 50, Image018.jpg
  text "Body:", 5, 5 105 20 50
  button "Send", 6, 170 103 20 10, cancel
  edit "", 7, 5 115 240 80,multi,return,autovs %Body
}


I don't understand some of the options. Is there any way to save everything that is typed in an edit box, even if they hit return? I'm referring to the last line of the table, ID 7. I am using a binary variable there and trying to deal with the body of an email. For now, I'm writing it to a file and then calling it back to send. I'd like to be able to save everything, even returns, and possibly loadbuf it to a window, if I can, instead of writing to a file. Is there a way to read from a window into a binary variable. Sorry for so many questions. Thanks.