我想要一个返回线:
showmoreDetailsAddress :=LocLocationtClientMethod.City + ',' + ' ' + LocLocationtClientMethod."Post Code" + ',' + ' ' +
LocLocationtClientMethod.Address;因为现在每个属性都在同一条线上。但每个属性都必须在单独的线上,如下所示:
a
b
c我试过这样做:
showmoreDetailsAddress :=LocLocationtClientMethod.City + ',' + '\' + LocLocationtClientMethod."Post Code" + ',' + ' ' +
LocLocationtClientMethod.Address;但结果仍然是:
AMSTERDAM,\1043AP, sdljkglsdjkfg发布于 2016-04-01 02:54:43
这取决于您将在何处使用结果。对于导航,新的行是\斜杠。对于其他所有内容,新的代码行是chr(13)+chr(10)
https://stackoverflow.com/questions/36337193
复制相似问题