Search found 1056 matches

by Rickard Johansson
14 Apr 2015 12:29
Forum: Bug reports
Topic: FIXED? Find/Replace in selection works unstably
Replies: 5
Views: 9516

Re: Find/Replace in selection works unstably

The count issue in selection has been fixed...
by Rickard Johansson
13 Apr 2015 16:45
Forum: Bug reports
Topic: FIXED: Find/Replace bug
Replies: 4
Views: 8884

Re: Find/Replace bug

Did you mean replace or replace all? Do you know which options you used?
by Rickard Johansson
13 Apr 2015 16:41
Forum: Bug reports
Topic: FIXED? Find/Replace in selection works unstably
Replies: 5
Views: 9516

Re: Find/Replace in selection works unstably

I tried with some different options but I can't reproduce the issue. I did find a count problem with the option "Match whole word", but nothing else...
by Rickard Johansson
13 Apr 2015 16:04
Forum: Bug reports
Topic: FIXED: Find-Next after GoTo Line
Replies: 1
Views: 5354

Re: Find-Next after GoTo Line

Fixed. Thanks!
by Rickard Johansson
10 Apr 2015 21:50
Forum: Bug reports
Topic: FIXED: Options panel | help via "?" button | Dual Monitor
Replies: 3
Views: 8271

Re: ??? Options panel | help via "?" button | Dual Monitor

Fixed in v10.23 final.

It was caused by a bug in Microsoft HTML Help Control "hhctrl.ocx". I replaced the HTML popup help with normal tooltips.
by Rickard Johansson
09 Apr 2015 17:52
Forum: Bug reports
Topic: FIXED: Options panel | help via "?" button | Dual Monitor
Replies: 3
Views: 8271

Re: Options panel | Control help via "?" button | Dual Monit

I've tried to reproduce it with the secondary monitor to the right. I can't see anything wrong. I've also tried themes and 32/64 bit versions.
by Rickard Johansson
07 Apr 2015 15:45
Forum: Bug reports
Topic: SOLVED? TextED slow to open a file
Replies: 2
Views: 7130

Re: TextED slow to open a file

I tried this with both the exception catching software enabled and disabled and there seems to be a very noticeable difference. It should work faster in the final release (release version without the exception catcher).
by Rickard Johansson
07 Apr 2015 15:10
Forum: Bug reports
Topic: Bug reports in this forum
Replies: 0
Views: 20169

Bug reports in this forum

Please use this forum when posting bug reports for beta versions. It will keep the normal bug report thread a bit cleaner and all beta related issues in the same place.
by Rickard Johansson
07 Apr 2015 14:15
Forum: Bug reports
Topic: SOLVED? Crash
Replies: 5
Views: 9203

Re: SOLVED? Crash

Well, the crash occur in the exception catcher software and not in the main program. It's not 100% reliable (and never has been) but it's still usable in a beta build to catch problems...
by Rickard Johansson
07 Apr 2015 13:27
Forum: Bug reports
Topic: SOLVED? Crash
Replies: 5
Views: 9203

Re: SOLVED? Crash

I get the same error when just opening the program while VMWare Player is running (at least sometimes). It seems to be very random. Sometimes it runs just fine, but after some work in VMWare Player, or opening and closing browsers etc. it suddenly wont run again. Do you still get the same error if y...
by Rickard Johansson
07 Apr 2015 12:15
Forum: Bug reports
Topic: SOLVED? Crash
Replies: 5
Views: 9203

Re: Crash

I think it's the good old exception catcher software issue with virtual software, like when VMWare Workstation is running... There's nothing I can do about it. The exception catcher software is not included in the final release. It's only included in debug and beta versions.
by Rickard Johansson
10 Mar 2015 21:26
Forum: News
Topic: Home page and forum moved to new web host
Replies: 1
Views: 16799

Re: Home page and forum moved to new web host

I forgot to backup your files uploaded to this forum. Sorry about that. There may be an avatar missing as well...
by Rickard Johansson
10 Mar 2015 00:11
Forum: News
Topic: Home page and forum moved to new web host
Replies: 1
Views: 16799

Home page and forum moved to new web host

I've moved the forum and the RJ TextEd site to a new web hosting provider. Hopefully it will solve a few issues, especially with the slow forum speeds.
by Rickard Johansson
09 Mar 2015 15:03
Forum: News
Topic: DDOS attacks and slow forum
Replies: 0
Views: 14298

DDOS attacks and slow forum

My web hosting provider is under DDOS attack and has been for a few days now. Because of this the forum is sometimes very slow and hard to access.

I'm considering moving my home page and forum to a different web host...
by Rickard Johansson
26 Jan 2015 17:25
Forum: Scripts
Topic: How do I use SaveToFile in order to...?
Replies: 4
Views: 18732

Re: How do I use SaveToFile in order to...?

This code will work in v10.20. { String s = ""; string sz = "C:\\Test.txt"; var size = FileSize(sz); if (FileExists(sz)) { Word mode = fmOpenReadWrite; TFileStream stream = TFileStream.Create(sz, mode); try { s = stream.ReadString(size, encAnsi); s = s + "This text is append...