GLBasic forum

Main forum => Bug Reports => Topic started by: MrTAToad on 2008-Dec-17

Title: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2008-Dec-17
are back in the latest version...
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Schranz0r on 2008-Dec-17
Code?
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2008-Dec-17
Not needed - just use Search In Files for something and look at the results.

I need to try a new editor again - at the moment, it appears to happen only in XP.
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Schranz0r on 2008-Dec-18
works fine for me...

can you post a screenshot?
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2008-Dec-19
http://i475.photobucket.com/albums/rr115/MrTAToad/test.jpg
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Schranz0r on 2008-Dec-19
hmm... interesting...


GERNOOOOOOOOOOOOOOOOT :D
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2008-Dec-19
It only seems to be with XP machines, even with the modified editor that Gernot supplied me with.
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Kitty Hello on 2008-Dec-20
I can't reproduce it. Can anyone else?
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Moru on 2008-Dec-20
I get a square at the end of each line, like those you get when there is a character that is missing in the font so I guess our fonts is involved. I'm using Lucida Console but I get it with Fixedsys and Courier also
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Ian Price on 2008-Dec-21
I'm using XP and I don't get the black squares.
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2009-Jan-14
The back rectangles are back in 6.134
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Ian Price on 2009-Jan-15
Not here (laptop this time). Dunno.
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Moru on 2009-Jan-15
Was never gone for me
Title: Re: Black dots at the end of each line in Find In Files...
Post by: amarliani on 2009-Jan-15
6.127: black dots like described
6.134: same result
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Kitty Hello on 2009-Jan-15
can someone, please copy/paste this in a file and attach it here? I wonder what character that is.
Also please post what OS you have (and what language)
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Moru on 2009-Jan-15
It's just a 0x0A
Windows XP, sp3, English
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2009-Jan-15
Its fine in Vista, but in XP Home with SP3 The Black Dots are present...
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Kitty Hello on 2009-Jan-15
Code (glbasic) Select

CString txt(Text);
txt.Replace("\r", "");
txt.Replace("\n", "\r\n");

That's the text I append to the edit control. Am I stupid?
Title: Re: Black dots at the end of each line in Find In Files...
Post by: Moru on 2009-Jan-15
I don't think you need line feed in textcontrols in windows?
Title: Re: Black dots at the end of each line in Find In Files...
Post by: MrTAToad on 2009-Jan-15
I must admit I cant remember whether you do or not, but I used to have the same problem when I had to code (with) edit boxes...

I think the escape code order may need to be reversed (or perhaps just keep \n)
Title: Re: Black dots at the end of each line in Find In Files...
Post by: amarliani on 2009-Jan-15
I've experimented a bit, and yes, the escape sequences show up to be the problem. AFAIK (and my test seem to prove that) you only need \n in Win boxes.