RE: newline in string resource

2002-09-10 Thread Agus Silas
] [mailto:[EMAIL PROTECTED]]De la part de Richard Coutts Envoyé : mardi 10 septembre 2002 05:42 À : Palm Developer Forum Objet : Re: newline in string resource I have a string resource that I would like to add some simple formatting to with newlines. Is this possible? I'm using \n but am getting errors

Re: newline in string resource

2002-09-10 Thread Richard Coutts
StrChr is an instruction which allow you to search a character within a string. If you want to add '\n' in msg you should use StrCat. Agus, As Joe pointed out in this thread, WinDrawChars will not process a newline character ('\n') as one might expect and will instead keep all of the text

Re: newline in string resource

2002-09-09 Thread Ben Combee
At 03:47 PM 9/9/2002 -0400, you wrote: I have a string resource that I would like to add some simple formatting to with newlines. Is this possible? I'm using \n but am getting errors. Where do you get your errors? Compile time or runtime? What kind of errors are they? -- Ben Combee [EMAIL

Re: newline in string resource

2002-09-09 Thread Joe Malone
--- John McDowell [EMAIL PROTECTED] wrote: I have a string resource that I would like to add some simple formatting to with newlines. Is this possible? I'm using \n but am getting errors. If you are using Constructor, just hit the Enter/Return key where you want to insert the newline in your

Re: newline in string resource

2002-09-09 Thread Richard Coutts
I have a string resource that I would like to add some simple formatting to with newlines. Is this possible? I'm using \n but am getting errors. Not sure if this will help you at all, but here's a function I coded recently (I took out some superfluous stuff, so test it if you use it). // //