Search found 1068 matches
- 13 Apr 2015 16:04
- Forum: Bug reports
- Topic: FIXED: Find-Next after GoTo Line
- Replies: 1
- Views: 6101
Re: Find-Next after GoTo Line
Fixed. Thanks!
- 10 Apr 2015 21:50
- Forum: Bug reports
- Topic: FIXED: Options panel | help via "?" button | Dual Monitor
- Replies: 3
- Views: 9742
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.
It was caused by a bug in Microsoft HTML Help Control "hhctrl.ocx". I replaced the HTML popup help with normal tooltips.
- 09 Apr 2015 17:52
- Forum: Bug reports
- Topic: FIXED: Options panel | help via "?" button | Dual Monitor
- Replies: 3
- Views: 9742
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.
- 07 Apr 2015 15:45
- Forum: Bug reports
- Topic: SOLVED? TextED slow to open a file
- Replies: 2
- Views: 7977
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).
- 07 Apr 2015 15:10
- Forum: Bug reports
- Topic: Bug reports in this forum
- Replies: 0
- Views: 26123
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.
- 07 Apr 2015 14:15
- Forum: Bug reports
- Topic: SOLVED? Crash
- Replies: 5
- Views: 10510
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...
- 07 Apr 2015 13:27
- Forum: Bug reports
- Topic: SOLVED? Crash
- Replies: 5
- Views: 10510
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...
- 07 Apr 2015 12:15
- Forum: Bug reports
- Topic: SOLVED? Crash
- Replies: 5
- Views: 10510
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.
- 10 Mar 2015 21:26
- Forum: News
- Topic: Home page and forum moved to new web host
- Replies: 1
- Views: 19968
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...
- 10 Mar 2015 00:11
- Forum: News
- Topic: Home page and forum moved to new web host
- Replies: 1
- Views: 19968
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.
- 09 Mar 2015 15:03
- Forum: News
- Topic: DDOS attacks and slow forum
- Replies: 0
- Views: 17626
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...
I'm considering moving my home page and forum to a different web host...
- 26 Jan 2015 17:25
- Forum: Scripts
- Topic: How do I use SaveToFile in order to...?
- Replies: 4
- Views: 22434
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...
- 26 Jan 2015 13:14
- Forum: Scripts
- Topic: How do I use SaveToFile in order to...?
- Replies: 4
- Views: 22434
Re: How do I use SaveToFile in order to...?
Maybe streams are are a better choice. I've fixed the issues and I'll release v10.20 beta in a few days. I've also made some updates to the help file. You could use // Read an UTF8 file to a string. WORD mode = fmOpenRead; TFileStream stream = TFileStream.Create("C:\\Test.txt", mode); try ...
- 26 Jan 2015 11:56
- Forum: Scripts
- Topic: How do I read from a file?
- Replies: 2
- Views: 18890
Re: How do I read from a file?
You could try:
or
I'll look into the stream issue.
Code: Select all
TStringList list = TStringList.Create;
try
list.LoadFromFile("C:\\Test.txt");
var text = list.Text;
...
finally
list.Free;
end;
Code: Select all
WStrings.LoadFromFile("filename.txt");
var text = WStrings.GetText;
- 23 Dec 2014 09:54
- Forum: News
- Topic: Merry Christmas 2015
- Replies: 1
- Views: 18670
Merry Christmas 2015

Merry Christmas everyone!