Who to get the height of the text in a Text Layout?

Hey, I'm using the text layout component offered by adobe labs. I read the documentation and now capable of doing almost all what I need. I just have a small problem. Lets say I have a text layout object on my stage containing some text. How can I know the height of the text or the number of lines in it ???
I found their is a porperty: "contentHeight"  and a method "calculateHeight()" but they are in another class of the libraries that comes with the text layout component. I don't know how to reach them. Please help and write me the lines of code that do this job.
Thanks

Well I was going to suggest that you post in the TLF forums, http://forums.adobe.com/community/labs/textlayout.
But you seem to have found those. So instead I will suggest that you don't cross-post.
Really if anybody could answer that it would be the folks there. I know there isn't a lot of traffic in those forums, but that is because the TLF is really insanely complicated and it is still beta. But it looks like most questions there do get some kind of answer....

Similar Messages

  • How to align the item text in the combobox vertically centred after increasing the height of the combobox in mfc?

    I want to make the item text of the combobox to  be aligned vertically(Centred) . Actually I increased the height 
    of the combobox and after the increasing the combobox height, the text is not centred vertically.The code
    snippet for increasing the height is as follows,
    m_SpecifyCombo.SetItemHeight(-1,20);//CCombobox m_SpecifyCombo
    After increasing the height the text in the combobox is not in the centre as shown in the below image,
    But I want the text to be centred as shown in the below image.
    Code snippet for owner drawn combobox:
    #if !defined(AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_)
    #define AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_
    #if _MSC_VER >= 1000
    #pragma once
    #endif // _MSC_VER >= 1000
    typedef enum {FONTS} STYLE; //Why have I enumerated, Cos, Maybe I might want something other than Fonts here
    class COwnerDrawCombo : public CComboBox
    // Construction
    public:
    COwnerDrawCombo();
    COwnerDrawCombo (STYLE);
    // Attributes
    public:
    void SetHilightColors (COLORREF hilight,COLORREF hilightText)
    m_clrHilight = hilight;
    m_clrHilightText = hilightText;
    void SetNormalColors (COLORREF clrBkgnd,COLORREF clrText)
    m_clrNormalText = clrText;
    m_clrBkgnd = clrBkgnd;
    static BOOL CALLBACK EnumFontProc (LPLOGFONT lplf, LPTEXTMETRIC lptm, DWORD dwType, LPARAM lpData);
    void FillFonts ();
    int GetSelFont (LOGFONT&);
    // Operations
    public:
    // Overrides
    // ClassWizard generated virtual function overrides
    //{{AFX_VIRTUAL(CCustComboBox)
    public:
    virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
    virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
    protected:
    virtual void PreSubclassWindow();
    //}}AFX_VIRTUAL
    // Implementation
    public:
    virtual ~COwnerDrawCombo();
    // Generated message map functions
    protected:
    STYLE m_enStyle;
    COLORREF m_clrHilight;
    COLORREF m_clrNormalText;
    COLORREF m_clrHilightText;
    COLORREF m_clrBkgnd;
    BOOL m_bInitOver;
    void DrawDefault (LPDRAWITEMSTRUCT);
    void DrawFont(LPDRAWITEMSTRUCT);
    void InitFonts ();
    //{{AFX_MSG(CCustComboBox)
    afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
    afx_msg void OnDestroy();
    //}}AFX_MSG
    afx_msg long OnInitFonts (WPARAM, LPARAM);
    DECLARE_MESSAGE_MAP()
    //{{AFX_INSERT_LOCATION}}
    // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
    #endif //!defined(AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_)
    // OwnerDrawCombo.cpp : implementation file
    #include "stdafx.h"
    #include "combobox.h"
    #include "OwnerDrawCombo.h"
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
    #define WM_INITFONTS (WM_USER + 123)
    //I chose 123 cos nobody might use the same exact number.. I can improve this by use RegisterWindowMessage..
    // COwnerDrawCombo
    //Initial values of the text and highlight stuff
    COwnerDrawCombo::COwnerDrawCombo()
    m_enStyle = FONTS;
    m_clrHilight = GetSysColor (COLOR_HIGHLIGHT);
    m_clrNormalText = GetSysColor (COLOR_WINDOWTEXT);
    m_clrHilightText = GetSysColor (COLOR_HIGHLIGHTTEXT);
    m_clrBkgnd = GetSysColor (COLOR_WINDOW);
    m_bInitOver = FALSE;
    COwnerDrawCombo::COwnerDrawCombo (STYLE enStyle)
    m_enStyle = enStyle;
    m_clrHilight = GetSysColor (COLOR_HIGHLIGHT);
    m_clrNormalText = GetSysColor (COLOR_WINDOWTEXT);
    m_clrHilightText = GetSysColor (COLOR_HIGHLIGHTTEXT);
    m_clrBkgnd = GetSysColor (COLOR_WINDOW);
    m_bInitOver =FALSE;
    COwnerDrawCombo::~COwnerDrawCombo()
    BEGIN_MESSAGE_MAP(COwnerDrawCombo, CComboBox)
    //{{AFX_MSG_MAP(COwnerDrawCombo)
    ON_WM_CREATE()
    ON_WM_DESTROY()
    //}}AFX_MSG_MAP
    ON_MESSAGE (WM_INITFONTS,OnInitFonts)
    END_MESSAGE_MAP()
    // COwnerDrawCombo message handlers
    void COwnerDrawCombo::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
    //I might want to add something else someday
    switch (m_enStyle)
    case FONTS:
    DrawFont(lpDrawItemStruct);
    break;
    //I dont need the MeasureItem to do anything. Whatever the system says, it stays
    void COwnerDrawCombo::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
    void COwnerDrawCombo::DrawFont(LPDRAWITEMSTRUCT lpDIS)
    CDC* pDC = CDC::FromHandle(lpDIS->hDC);
    CRect rect;
    TRACE0 ("In Draw Font\n");
    // draw the colored rectangle portion
    rect.CopyRect(&lpDIS->rcItem);
    pDC->SetBkMode( TRANSPARENT );
    if (lpDIS->itemState & ODS_SELECTED)
    pDC->FillSolidRect (rect,m_clrHilight);
    pDC->SetTextColor (m_clrHilightText);
    else
    pDC->FillSolidRect (rect,m_clrBkgnd);
    pDC->SetTextColor (m_clrNormalText);
    if ((int)(lpDIS->itemID) < 0) // Well its negetive so no need to draw text
    else
    CString strText;
    GetLBText (lpDIS->itemID,strText);
    CFont newFont;
    CFont *pOldFont;
    ((LOGFONT*)lpDIS->itemData)->lfHeight = 90; //9 point size
    ((LOGFONT*)lpDIS->itemData)->lfWidth = 0;
    newFont.CreatePointFontIndirect ((LOGFONT*)lpDIS->itemData);
    pOldFont = pDC->SelectObject (&newFont);
    pDC->DrawText(strText, rect, DT_LEFT | DT_VCENTER | DT_SINGLELINE);
    pDC->SelectObject (pOldFont);
    newFont.DeleteObject ();
    void COwnerDrawCombo::InitFonts ()
    CDC *pDC = GetDC ();
    ResetContent (); //Delete whatever is there
    EnumFonts (pDC->GetSafeHdc(),NULL,(FONTENUMPROC) EnumFontProc,(LPARAM)this);//Enumerate
    m_bInitOver = TRUE;
    BOOL CALLBACK COwnerDrawCombo::EnumFontProc (LPLOGFONT lplf, LPTEXTMETRIC lptm, DWORD dwType, LPARAM lpData)
    if (dwType == TRUETYPE_FONTTYPE) //Add only TTF fellows, If you want you can change it to check for others
    int index = ((COwnerDrawCombo *) lpData)->AddString(lplf->lfFaceName);
    LPLOGFONT lpLF;
    lpLF = new LOGFONT;
    CopyMemory ((PVOID) lpLF,(CONST VOID *) lplf,sizeof (LOGFONT));
    ((COwnerDrawCombo *) lpData)->SetItemData (index,(DWORD) lpLF);
    return TRUE;
    int COwnerDrawCombo::OnCreate(LPCREATESTRUCT lpCreateStruct)
    if (CComboBox::OnCreate(lpCreateStruct) == -1)
    return -1;
    // TODO: Add your specialized creation code here
    if (m_enStyle == FONTS)
    //SetItemHeight(-1,30);
    PostMessage (WM_INITFONTS,0,0);
    return 0;
    long COwnerDrawCombo::OnInitFonts (WPARAM, LPARAM)
    InitFonts ();
    return 0L;
    void COwnerDrawCombo::OnDestroy()
    if (m_enStyle == FONTS)
    int nCount;
    nCount = GetCount ();
    for (int i = 0; i < nCount; i++)
    delete ((LOGFONT*)GetItemData (i)); //delete the LOGFONTS actually created..
    // TODO: Add your message handler code here
    CComboBox::OnDestroy();
    void COwnerDrawCombo::FillFonts ()
    m_enStyle = FONTS;
    PostMessage (WM_INITFONTS,0,0); //Process in one place
    int COwnerDrawCombo::GetSelFont (LOGFONT& lf)
    int index = GetCurSel ();
    if (index == LB_ERR)
    return LB_ERR;
    LPLOGFONT lpLF = (LPLOGFONT) GetItemData (index);
    CopyMemory ((PVOID)&lf, (CONST VOID *) lpLF, sizeof (LOGFONT));
    return index; //return the index here.. Maybe the user needs it:-)
    void COwnerDrawCombo::PreSubclassWindow()
    // TODO: Add your specialized code here and/or call the base class
    //Tried to do what Roger Onslow did for the button.. Did not work..?? Any R&D guys around :-)
    Can anyone please let me know how can I achieve this.
    Any help can be appreciated.
    Thanks in advance
    SivaV

    Hi sivavuyyuru,
    I cannot find a easy way to make this.
    I think you may need to draw your own Combo Box control. And you could change the edit control more like static text. Check the article:
    http://www.codeguru.com/cpp/controls/combobox/fontselectioncombos/article.php/c1795/Owner-Drawn-Font-Selection-Combobox.htm
    In the resource editor, Owner draw -> variable , Has string->true, type->drop list.
    The result:
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to increase the height of the text field in Adobe Central

    How do I increase the height of the text field in Adobe Central?  I know how to change the font size but visually the height of the text field (<0.5cm) looks too small.
    I want to be able to print the form and fill it out by hand. But the text field height is too small.
    Please help.
    Thanks
    Gen

    Hi;
    Are you saving your form as a PDF from FormsCentral to distribute the PDF form? 
    In the FormsCentral form authoring tools you do not have control over the size of the field.  If you are using a PDF however you can edit that PDF in Acrobat after saving from FormsCentral and can edit the size, border, color etc of the fields. 
    If you want to edit a FormsCentral PDF you'll want to review this FAQ:
    http://forums.adobe.com/docs/DOC-3661
    Thanks,
    Josh

  • Getting the height of the title bar of a JInternalframe

    Hi,
    How can i get the height of the title bar of a JInternalframe??
    Please reply asap.
    Thanks
    Jatin

    Try this.
    myFrame.getUI().getNorthPane().getHeight();

  • A problem with the height of the sidebars on my website

    I am trying to make a website for one of my modules in college and I have come across a little problem.
    http://joehowlin.com/onlinesafety/index.htmlhttp://joehowlin.com/onlinesafety/index.html
    The left hand sidebar doesn't extend down to the footer (the same would  happen to the right hand sidebar if the text wasn't there). I have tried  to set the height of the sidebar to 100% and it didn't change the  height at all.
    I can't really have the sidebars at a set pixel height because there will be different amount information on different pages.
    I was told of a way to do it by having the height defined in the <html> tag, but that casues some validation errors and I want to try get my website as html valid as I can.
    Does anyone know of a way that can help me?

    Equal Height CSS Divisions -
    http://forums.adobe.com/message/3264374#3264374
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to stretch the height of the table dynamically?

    Hi,
    I am using JDeveloper 11.1.1.4.0.
    I have created summary details page screen where i have to show the non-editable grid at the top portion and respective editable form fields at the bottom portion.
    Requirement:
    Based on the free form height, rest of the screen area should be occupied by the non-editable grid automatically.
    Tried:
    1. I have a vertical panel splitter. Also set the dimensionFromEnd to true.
    2. Added panelStretchLayout inside both the first facet and second fact of panel splitter.
    3. Placed the grid inside the first facet's panelStretchLayout (Inside centre facet)
    4. Placed the free form inside the second facet's panelStretchLayout (Inside centre facet)
    By having the above structure and setting splitter position, i am able fix the height for the free form and to get my grid occupied the remaining space.
    Question:
    How can i achieve the same without specifying the splitte position?
    Thanks in Advance.
    Perumal

    Hi
    can you check this
    <af:panelStretchLayout id="psl1" styleClass="AFStretchWidth">
    <f:facet name="bottom"/>
    <f:facet name="center">
    <af:panelTabbed id="pt1">
    <af:showDetailItem text="#{edmsBundle.EMAIL}" id="sdi1"
    stretchChildren="first" disclosed="true" <--------- this tab width is full but height is not
    inlineStyle="height:9000.0px;">
    <af:panelSplitter id="ps1">
                      <f:facet name="first">
                       <af:region value="#{bindings.emailconfig1.regionModel}" id="r1"/>
                      </f:facet>
                    </af:panelSplitter>
    </af:panelTabbed>
    </f:facet>
    <f:facet name="start"/>
    <f:facet name="end"/>
    <f:facet name="top"/>
    </af:panelStretchLayout>

  • How may I change the height of the menu bar to allow my large icons/buttons to maintain their size?

    I recently updated from FF28 to FF31. Totally different UI, I get that. I waited to update until I could psych myself to try something different. I have the Default Australis Theme and Noia Fox Theme, which is designed with larger icons/buttons for those with visual needs. On my screen at the moment I have the title bar, menu bar, tab bar, and url/addon bar with the "hamburger" menu to the right. I placed icons in the menu bar, kept the home icon on the addon bar, and then there are the default icons in the menu popup. When I enable the Noia Fox Theme, the icons look great on the url/addon bar, even in the menu popup; clear, large, easy to see. However, the icons in the menu bar (not the menu popup) are less than half their original/intended size. So I switch to default Australis Theme, restart, and same issue, though not quite as dramatic since Default theme is smaller to begin with.
    My thinking then is that there is a setting within the menu bar which resizes the icons/buttons to a small default size. Can this setting be changed to allow the icons to retain their original size (or close to it) and if so, how? I like the location of the menu bar on my screen, below the title bar, above the tab bar. Works nicely with the new The Fox Only Better addon which attaches to the tab bar and hides the url bar, a "new" feature for me and I'm liking it. I know I can get CTR with an additional bar, and I did try that. The issue then is that the additional bar appears below the tab bar and is not movable to above the tab bar and below the title bar.
    At the moment, I have just the two themes, security addons added and The Fox Only Better. I've not added other appearance addons yet so as to keep potential conflicts/issues to a minimum. I've not tinkered with internal FF default settings other than to say don't track me (I think that's all I did). So to the best of my limited understanding, I've kept changes and customizations to a minimum. And yes, per your educated guess feature for questions posted, I am running Win 8.1 and FF 31.
    I think I've offered enough detail so others can try to duplicate the issue. If not, let me know and I'll try to respond as soon as I can. Thanks so much for any help offered.
    ~ wkothlow

    You can double the height of the menu bar area using a custom style rule. I couldn't immediately find an icon that would take advantage of the space so I'm not sure this will solve the problem, but you could try it.
    The custom style rule could be as simple as:
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    /* double height (from 2x to 4x the 13px base font size) */
    #toolbar-menubar{
    height:4em !important;
    (Result shown in the screen shot, using the preview feature of the Stylish extension.)
    You can apply custom style rules to Firefox's UI using either of these methods:
    (1) Create or edit a userChrome.css file. This article has more information: http://kb.mozillazine.org/UserChrome.css
    (2) Use the Stylish extension: https://addons.mozilla.org/firefox/addon/stylish/
    Since I don't have this theme to test myself, if this doesn't work well, you might contact the theme author using the theme's support thread, which is on an independent forum: http://forums.mozillazine.org/viewtopic.php?f=48&t=2230157

  • I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use cursor and drag down the top border, but that does not reset the top border.

    I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use the cursor and drag down the top border, but that does not reset/decrease the top border.

    Set your columns back to one for the moment. In layout mode, insert a Text box. Place it in the upper left corner of your document, and drag down and right to the size of the container for your two columns. Click inside the Text Box, and now bump up your columns to 2. Your two columns are now contained in this resizable Text Box.

  • Font size is computed as a function of the height of the annotation rectangle.

    From Pdf reference:
    The default appearance string (DA) contains any graphics state or text state oper-
    ators needed to establish the graphics state parameters, such as text size and color,
    for displaying the fields variable text. Only operators that are allowed within text
    objects may occur in this string (see Figure 4.1 on page 197). At a minimum, the
    string must include a Tf (text font) operator along with its two operands, font and
    size. The specified font value must match a resource name in the Font entry of the
    default resource dictionary (referenced from the DR entry of the interactive form
    dictionary; see Table 8.67). A zero value for size means that the font is to be auto-
    sized: its size is computed as a function of the height of the annotation rectangle.
    Could u please to provide the mentioned function description

    I don't think any of the users here could provide that.
    Aandi Inston

  • Financial Reporting 9.3.1 automatically change the height of the row

    How can I make the reports generator automatically change the height of the row if the text does not fit into the cell? I tried different PDF generators (AFPL Ghostscript 8.51, Adobe Acrobat Distiller 6.0) but result was the same: http://sql.ru/forum/actualfile.aspx?id=6396177

    Hi,
    In HFR if you are not allowing expansion on the row or column, it wont expand itself according text length.
    So you need to anticipate the row hight and width according to your need. You can define this in the property sheet.
    Thanks,
    aly

  • Can you adjust the height of the toolbar button in the skin file?

    Can I manually adjust the height of the toolbar navigation buttons in the skin file? It seems no matter how tall I make the nav panel, the buttons adjust size accordingly. Can I tell it to be 50% or something like that? For example, this is what I see for the glossary button.
    <toolbaritem mode="BtnWithIcon Mode" type="built-in-glossary" id="4">
       <name>Glossary</name>
       <text>::??DefaultWebSkinText??::</text>
       <color></color>
       <image></image>
       <icontype>none</icontype>
       <selected>
        <color></color>
        <image></image>
        <icontype>none</icontype>
       </selected>
       <style>100</style>
      </toolbaritem>
    Notice I am not using custom images or anything, just plain text.
    Thanks

    Hi Josh
    You must be someone that dearly loves digging into code.
    The simplest way to adjust the buttons is to use the built in Skin Editor.
    Hmmm, and in writing that response it occurs to me that you haven't exactly advised which of the outputs you are creating. The skin editor I'm referring to is the WebHelp skin editor. To open it, click View > Pods > Project Set-up. Once that pod is open you should see the Skins folder. Expand that and double-click the skin you are using to open and edit it using the skin editor.
    Cheers... Rick

  • How to repeat a background image to cover the height of the page?

    Hi
    I have a page with an image alinged to the top in a table and
    I have a pattern in the background of the cell in the same table
    I need that background of the cell to repeat it self along
    the height of the page, so when someone views the page at a higher
    resolution, the background image will repeat it self to cover the
    extra space.
    I've tried setting the height of the table to percentage, but
    the table doesn't cover the height of the page.
    I could also make the table really long so when viewed at
    higher resolution there wont be any blank space at the bottom, but
    this makes an unnecessary and long scroll when viewed at lower
    resolution.
    Someone told me to use css but i have now idea how to
    implement that.

    make sure you have set your page margins to 0 if you don't
    want the default
    margin top left. Cut and paste the following into the head of
    your document
    just before the closing </head> tag.
    then if you want to repeat a background image in a cell, you
    need to create
    a rule to do this:
    .cellback {
    /*this repeats the image across the page horizontally*/
    /* if you want to repeat down the page, then change to
    repeat-y */
    background: url(pics/whatever.gif) repeat-x;
    you can combine this background image rule with the other
    margin setting so
    you have:
    <style type="text/css">
    <!--
    body {
    margin: 0;
    padding:0;
    .cellback {
    background: url(pics/whatever.gif) repeat-x;
    -->
    </style>
    You then apply to the class to your cell
    <td clas="cellback">
    Examples here:
    http://www.dreamweaverresources.com/tutorials/pagebackgrounds/cellbackground.htm
    this shows how to use a background image for your entire
    page:
    http://www.dreamweaverresources.com/tutorials/pagebackgrounds/examplehor.htm
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    > I have a page with an image alinged to the top in a
    table and I have a
    > pattern
    > in the background of the cell in the same table
    > I need that background of the cell to repeat it self
    along the height of
    > the
    > page, so when someone views the page at a higher
    resolution, the
    > background
    > image will repeat it self to cover the extra space.

  • How to fix the height of the details section in crystal reports.

    hi all
    How to fix the height of the details section in crystal reports.

    Thanks for your reply
    i didnt get the clear idea about your answer can you explain it once with example
    why iam asking is when i add a new details section according to you answer maintaining same height of the two details sections and i see the preview the iam getting gap between each record. this is so because one record from details section1 and another empty space from details section2
    like
    Details section A-contains records
    Details section B- no records
    Details section A-contains records
    Details section B-no records
    Then how will i solve my issue
    Thanks in advance

  • How can I manually change the height of the "Type ...

    Hi all
    Just got automatically installed the latest 6.22 version of skype few minutes ago and I got a few questions. 
    First and foremost, how can I MANUALLY change the height of the textbox, where I type the messages. I would like to make it larger, like in the previous versions of skype. I don't want to move my mouse cursor through the entire monitor to reach this tiny textbox.
    And second, why you guys are trying constanly to ruin something that is working perfectly ? Going to revert to the previous version until you fix all these nuisances.
    Regards

    There is no way to do this, it is designed to be strictly landscape with keyboard, portrait without - not the best thought-out phone on the market, mainly geared towards compulsive texters and e-mailers.
    There's no way to know whetherNokia will change this with any future updates, perhaps you should make the recommendation to them directly using the 'contact us' link.

  • How to change the height of the advanced paragraph window in WPC?

    Hello,
    I would like to have a bigger window when I work with the advanced paragraph in WPC in order to see better the content.
    It´s ok if I see at the beginning the default size. However, I need the posibility to maximize the height of the window to a predefinded maximum height.
    It´s maybe possible to give an extra property for like MaxHeight="500" in the xml-File?
    <element id="paragraph_advanced" description="xml.xlbl.paragraph_advanced" type="htmleditadvanced" Maxheight="500" default="false" />
    Does anybody have experience with it.
    Thanks in advance.
    Thomas

    Hi Thomas...
    Did you have success changing the paragraph height?
    I'm with the same problem.
    I had another idea to solve it. If I couldn't change the height, i'll create my own web form (based on article form), only with paragraph field.
    I've tested this option and worked. But I prefer to use the standard web form.
    Tks

Maybe you are looking for