|
Drag&drop and image resizing in TRichView editor 1.8
RichView Package is a set of native (not based on MS RichEdit dll) Delphi
components for editing documents with tables, images and hyperlinks.
Version 1.8 is released.
Some new features (since version 1.7):
* drag and drop;
* resizing inserted images and controls with mouse;
* background images for tables and cells;
* smart word selecting;
and a number of lesser improvements.
Drag & drop is implemented both inside an application and between different
applications (while authors of the most of VCL editors offer drag&drop only
between editors in the same application).
Visit http://www.trichview.com for additional information.
Trial versions can be downloaded from http://www.trichview.com/download/
Related Discussions - EXES CONTAINING MORE THAN ONE ICON RESOURCE ... (2001-01-05 09:25:58)Just draw your icons with the Borland Image Editor (Delivered with Delphi). It allows to save different icons in one ico file as well.
- .BMP ISN'T A VALID PICTURE FILE FORMAT!? UHUM!? (2001-01-05 14:59:28)I think you have to Specify
what line the text is in, like this.
Image1.Picture.LoadFromFile(Memo1.Lines.Strings);
If the text in the...
- SAVING CURSORS? (2001-01-07 03:09:39)Well whenever I want to login I have to enable cookies - that's a bit annoying.
And people were able to enter their email addresses before as...
- HOW DO I STRETCH THE SIZE OF FORM WHEN SCREEN RES INCREASED? (2001-01-09 03:54:00)first of all i am not sure what is your requirement
are u concerned with first time sizing of your form on initialization or do you want to...
- SENDING FILES VIA HTML!!! .... BUT WITHOUT ANY COMPONENT (2001-01-09 23:49:06)I really don't know if this will help you or not, but I came across it a while back and thought it might be of use to you regarding how you phrased...
- INVALID VARIANT TYPE CONVERSION ON DBGRID WITH LOOKUP FIELDS (2001-01-11 04:07:45)there are two reason for this error
first and less likely is you are converting something of one type to another type which is not compatible...
- MP3 (2001-01-11 23:15:38)Hi!
Thx to you all ho have answered to my question about MP3.
There seems to be a some easy solutions for me and I will try out them to see...
- PRINTING... (2001-01-15 10:49:37)U could do it the simple way. Something like this
button1.visible:=false;
button2.visible:=false;
print;
button1.viasible:=true;...
- MDI APPLICATION (2001-01-16 07:44:51)You should typecast the ChildForm to your form class. For Example your child form is called TMyChildForm then use the following command to reach an...
- DRAG A LINK FROM IE INTO MY APP? (2001-01-17 14:42:52)You need to implement IDropTarget and IDataObject COM interfaces... quite a bit of work.
The easy way is to use Anders and my Drag and Drop...
|