使用ShowMessage过程如何实现换行?(30分)

  • 主题发起人 主题发起人 cp85729
  • 开始时间 开始时间
C

cp85729

Unregistered / Unconfirmed
GUEST, unregistred user!
使用ShowMessage过程如何实现换行?
请举例...(倾囊献出30分)
 
showmessage('string1'+chr(13)+'string2'...)//chr(13)为换行
 
在要换行的地方加上#13, 如:'abcd' + #13 + 'cdef'
 
showmessage('asdfas'+#13+'asd');
 
多人接受答案了。
 
错了,是#13#10
这样写都可以: showmessage('****metender!'#13#10'realy');
 
后退
顶部