Beiträge von wpsupport

    *** WPTools 8.06.2 - 25.10.2018 ***

    - fix problem with TMMDataProvider (AV in IDE)

    * border-, color- and table dialogs have been updated for high-res support

    - fix problem that sometimes a row was broken into to pages

    - also display frame lines with borders smaller than 1pixel. (unless $DEFINE HIDE_SMALLBORDER)

    + DocX reader: support szCs

    * DocX reader: fix use of DocDefaults (now only applied if par-properties are not used)

    + StringToColor supports $BBGGRR

    * fix in DocX ZIP reader to solve problem with some images not beeing loaded.

    Das sind die letzten Änderungen. Manuals.ZIP war noch nicht hochgeladen.

    *** WPTools 8.06.1 - 18.10.2018 ***

    - fix possible range check error when selecting fields

    + with RTF writer it is possible to suppress the writing of paragraph names

    using the format string "-noparnames"

    * Finder now uses property "WholeWord" also when searching with wildcard, i.e. '*'. The found text

    must then start and end with a word. Spaces inbetween are allowed.

    *** WPTools 8.06.0 - 30.9.2018 ***

    * HTML export saves bullet list with style="disk"

    * property TWPRichText.SpeechReconitionInterfaceMode (runtime only) to fine adjust the

    interface to speech recognition programs

    * optimation of text center in table cells

    * improvement of paragraph reformat (while typing)

    * <pagebreak/> can now be used in HTML input between paragraphs

    * WPContainer did not make the transition to unicode. The name was saved truncated and

    when loading old files unicodes were expeced where ANSI was used. This has been fixed.

    You can now also save unicode names when the property SaveUnicodeNames is true

    *** WPTools 8.06.1 - 18.10.2018 ***

    - fix possible range check error when selecting fields

    + with RTF writer it is possible to suppress the writing of paragraph names

    using the format string "-noparnames"

    * Finder now uses property "WholeWord" also when searching with wildcard, i.e. '*'. The found text

    must then start and end with a word. Spaces inbetween are allowed.

    *** WPTools 8.06.0 - 30.9.2018 ***

    * HTML export saves bullet list with style="disk"

    * property TWPRichText.SpeechReconitionInterfaceMode (runtime only) to fine adjust the

    interface to speech recognition programs (requires the speech program to recognize the TWPRichText)

    * optimation of text center in table cells

    * improvement of paragraph reformat (while typing)

    * <pagebreak/> can now be used in HTML input between paragraphs

    * WPContainer did not make the transition to unicode. The name was saved truncated and

    when loading old files unicodes were expeced where ANSI was used. This has been fixed.

    You can now also save unicode names when the property SaveUnicodeNames is true

    Please check the event OnRequestHTTPImage.

    You need to set the variable Ok to true.

    procedure TForm1.WPRichText1RequestHTTPImage(

    RTFData: TWPRTFDataCollectionBase; Reader: TWPCustomTextReader;

    const LoadPath, url: string; TextObject: TWPTextObj; var Ok: Boolean);

    begin

    Ok := true;

    end;

    Der HTML reader muss mitbekommen dass es sich um UTF8 handelt. Normalerweise steht dass im HTML head: meta charset

    Man kann es aber beim Laden mit dem format string 'HTML-utf8' erzwingen

    If you put a TWPToolBar on your form and attach it to a TWPRichText it will show the old icons which are loaded from the RES file.

    You can enlarge the buttons using the property ButtonHeight.

    The WPImageList is used to provider larger images. It contains a collection with "slots" for different resolutions.

    The images are loaded from a PNG file which contains images for 182 images one over the other, provided as Icons_24.png

    If the image list contains that bitmap it can be attached top the TWPToolBar and that will pick the image best matching to button height. This means when increasing the button height glyphs with better resolution can be pulled from TWPImageList.

    Why WPTools does not use the standard TImageList? Because the TWPImageList supports PNG and can also contain multiple icons used for different resolutions.

    Hi,

    Please make sure to not use any runtime packages.

    For the project set the destination project and always do a Build All after you changed the destination .

    Julian