Page 1 of 1

MSGINFO

Posted: Fri Mar 29, 2013 2:28 pm
by sunningdale
When using MSGINFO is there anyway of forcing a new line.

eg-
c1 = "Have a nice day. "
c2 = Hope to see you soon. "
MSGINFO(c1 + c2)

produces one continuious string.

MSGINFO(c1 + SPACES(nn) + c2) does the trick but is there another way?

Re: MSGINFO

Posted: Fri Mar 29, 2013 3:05 pm
by dhaine_adp
Hi sunningdale,

Code: Select all

#define   CRLF   HB_OSNEWLINE()   // Harbour function

c1 := "Have a nice day. "
c2 := Hope to see you soon. "
MSGINFO(c1 + CRLF + c2, "Title")


Regards,

Danny