MSGINFO

Source code related resources

Moderator: Rathinagiri

Post Reply
sunningdale
Posts: 12
Joined: Thu Jan 03, 2013 11:46 am
Location: Etloe, UK

MSGINFO

Post 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?
User avatar
dhaine_adp
Posts: 457
Joined: Wed Aug 06, 2008 12:22 pm
Location: Manila, Philippines

Re: MSGINFO

Post 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
Regards,

Danny
Manila, Philippines
Post Reply