Inserting Fields - Changes

  • Under WpTools 4 the following worked fine:

    rtf1.ReplaceTokens('<<','>>');
    WPMMDataProvider1.AutoLoadData := TRUE;
    rtf1.HideInsertpoints := true;
    rtf1.FastMergeText;
    rtf1.Refresh;

    Now with WpTools5.08 I do the following:

    rtf1.ReplaceTokens('<<','>>');
    rtf1.InsertPointAttr.Hidden := true;
    WPMMDataProvider1.ReadData;

    Only the first field get inputted, the remaining fields are not affected and do not show the data.
    Spacing is not an issue.

    Please advise.

    Thanks