Beiträge von wpsupport

    wPDF is based on GDI, not GDI+.

    It also depends that paths and world transformations are correctly encapsulated with SaveDC/RestoreDC. If this is not done, it has to make assumptions since PDF does not allow the definitiopn of a World, but just incremental changes to it. The same is true for clipping.

    You can activate EMF writing for debug purposes

    wPDF.DebugMode := true

    You can send the created EMF to support to reprodce the problem.

    The quickrepot support can be odered from our order page. But i is not for QuickReport 4.

    Further more the architecture has been changed 20 years ago, and that support works different to the one in WPTools 4.

    There is the event OnTextObjectPaint which can be used for this. In my projects I sometimes use it event to load the image data since thic can increase the sepped when scrolling through a database with textes which also load images.

    OnTextObjectPaint can be used to show

    Dafür gibt es derzeit keine Option, ppNoNewParagraphsInEditFields geht ja nur in formular feldern. Also speziell markierten MergeFeldern und dann nur in den Forumar Ausfüll Modus. (Siehe MailMerge Demo)#

    wpAutoInsertRow ist für Tabellen, wenn man also am Ende einer Zeile ist und CR drückt kann automatisch eine neue Zeile erstellt werden.

    >> Nachdem ich die Eingabetaste gedrückt habe, wird mein Absatz in zwei Teile geteilt (Eltern-Kind).

    Diese Eltern/Kind Beziehung passiert in der Tat in Tabellen Zellen.

    Man könnte aber in OnKeyPress die Return Taste #13 abfangen und =#0 setzen:

    if (key=#13) and (paprIsTable in WP.ActiveParagraph.prop) then

    key := #0;

    Da bietet sich der Absatz Schutz an:

    call.ASet(WPAT_ParProtected, 1);

    Diesen schutz muss man noch aktivieren:

    WP.ProtectedProp := WP.ProtectedProp + [ppParProtected];

    Dies sind die flags: