1. clipboard and \n
- Posted by Jerry Story <jstory at ocii.com> Aug 09, 2005
- 554 views
The tile was wrong. That should be \n, not /n. Jerry Story wrote: > > I'm using wxEuphoria. > With Windows, when I copy to the clipboard and then paste to notepad, > the \n (backslash > 'n') gets interpreted as a weird character. > With Linux, when I copy to the clipboard and then paste to gedit, > the \n gets interpreted > correctly. > > Question: > How can I make sure the \n gets interpreted correctly on >both Windows and Linux, and > on both notepad and gedit, and everywhere else? > > Or maybe the question is wrong. What do I gotta do instead of the \n?
2. Re: clipboard and \n
- Posted by Jerry Story <jstory at ocii.com> Aug 09, 2005
- 532 views
Jerry Story wrote: > > The tile was wrong. That should be \n, not /n. [cuss language]!! title, not tile
3. Re: clipboard and \n
- Posted by Al Getz <Xaxo at aol.com> Aug 09, 2005
- 553 views
Hi Jerry, Sometimes it helps to make your own "\n" by using either: constant crlf=13&10 or: constant crlf=10&13 Then instead of using "\n" you use crlf: MyString=MyString&crlf Note that sometimes 10&13 works and other times 13&10 works. This may or may not work for your app. Take care, Al And, good luck with your Euphoria programming! My bumper sticker: "I brake for LED's"