Search found 35 matches

by Rob
Sun Mar 04, 2007 5:45 pm
Forum: Support
Topic: Search conception in TRichView
Replies: 16
Views: 46680

You can concatenate each item while searching and see if that matches the search text. For example, if you need multiple items to search, keep a 'pointer' to the first item. If that item is not long enough, add the second item and match again. If this is still too shot, keep adding items until the l...
by Rob
Tue Jun 13, 2006 6:28 pm
Forum: Support
Topic: Rotated Text
Replies: 1
Views: 9389

This question was asked before. It is a good thing to implement, but it has no priority at the moment.
by Rob
Wed Mar 22, 2006 9:34 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 32525

To totally rule out any problems regarding threads, please put the thread-code into TTimer events. If the problem persists in just one thread, fixing it may be easier.
by Rob
Wed Mar 22, 2006 7:27 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 32525

Use Synchronize

Before you do *anything* else, take a note of the comment in your thread-classes. You totally omit the use of Synchronize: { Important: Methods and properties of objects in visual components can only be used in a method called using Synchronize, for example, Synchronize(UpdateCaption); and UpdateCap...
by Rob
Tue Mar 07, 2006 11:30 am
Forum: Support
Topic: How reduce the space in memory of TRichEdit?
Replies: 4
Views: 16980

RichView is a little more resource-friendly. Do you need all RichViews to be filled all the time?

Memory consumption depends a lot on what the RichViews contains.
by Rob
Sat Feb 18, 2006 9:04 pm
Forum: Support
Topic: Send RichViewEdit Text though a Socket?
Replies: 3
Views: 15575

I would not send RV-Internal objects but use a serializer and deserializer to send text and object through a socket.
There are plenty of examples out there that hint you on how to implement serialization. Here you have one example for an XML Serializer:

http://www.dragonsoftru.com/delphi_vcl.php
by Rob
Thu Feb 16, 2006 10:21 pm
Forum: Support
Topic: OpenDocument support
Replies: 17
Views: 58176

Development update: Importing OpenDocument files appears to be quite challenging to say at least. Due to some limitations, not all options of all documents can be supported. My primary focus at the moment is still reading the documents in the best way possible. The output file can be substantially d...
by Rob
Wed Feb 15, 2006 7:55 am
Forum: Support
Topic: Printing barcode
Replies: 2
Views: 13880

If you need simple barcodes, then there may be a font that can do the trick for you.

Font a free Code39 here for example:
http://www.idautomation.com/fonts/free/

Note that for most barcodes to work, you need to start and end the code with an asterisk (*)
by Rob
Wed Jan 04, 2006 6:53 pm
Forum: Support
Topic: .NET Version
Replies: 1
Views: 10518

Please use the search before posting questions:

http://www.trichview.com/forums/viewtop ... hlight=net
by Rob
Fri Dec 02, 2005 9:43 pm
Forum: Support
Topic: Large Docs with Many Pictures
Replies: 6
Views: 24605

Using JPEG images instead of bitmaps will help.
by Rob
Wed Nov 30, 2005 8:08 am
Forum: Support
Topic: Suitability for a programmer's editor
Replies: 4
Views: 17093

Take a look at SynEdit, which is available through SourceForge.
by Rob
Fri Nov 25, 2005 9:29 am
Forum: Support
Topic: OpenDocument support
Replies: 17
Views: 58176

@MLefebvre:

My first goal is to be able to load OpenDocument files is an acceptable manner. After this, I will shift focus to saving and pasting.

The functionality of the addon will be similar to that of the HTML importer/exporter. So, no DLL.
by Rob
Tue Nov 22, 2005 11:17 am
Forum: Support
Topic: OpenDocument support
Replies: 17
Views: 58176

Latest news on progress:

Improved global styles parsing.


Nothing more at the moment. A bit lack of time due to my new born son :D

Born in good health on November 17th, 8:16 am, weighing 3860 gr and a length of 55 cm. Mother and son are doing fine.
by Rob
Wed Nov 09, 2005 6:41 am
Forum: Support
Topic: Live Spellcheck slow speed
Replies: 5
Views: 21424

Just a hint, maybe:

In the AfterScroll, start a timer and stop it when it reaches say, about 500 milleseconds. Then, you can start the spell checking.

If the user scrolls to a new record within these 500 milliseconds, nothing will be checked.

Hope this helps.
by Rob
Sat Nov 05, 2005 10:12 pm
Forum: Support
Topic: Inline styles
Replies: 4
Views: 20745

OK, I'll put it on my wish list for implementing the ODT parser