Is it possible to increase the height of the Push button in a screen?

Dear All,
Is it Possible to increase the height of the Push button in a screen (Module Pool Programming)?
Is it possible to increase the font size of the characters in a screen (Module Pool Programming)?

Hi Vijay,
My question is.. I want to know whether it is possible to increase the height of the Push button in a screen. If it is possible, How to increase the height of the Push button?

Similar Messages

  • I have highlighted words in an .iba file. Now I need to increase the space before (and/or after) the paragraph it's contained in. If I increase the space after, the height of the highlighting increases also. Is there any way around this?

    I have highlighted words in an .iba file. Now I need to increase the space before (and/or after) the paragraph it's contained in. If I increase the space after, the height of the highlighting increases also. Is there any way around this?

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

  • 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.

  • Is it possible to control the height of the Portfolio panel via the PDF Portfolio itself?

    Hi All,
    Is it possible to embed into a PDF Portfolio kind of a directive to Adobe Acrobat Reader what should be the height of the Portfolio panel (red line on the image below)?
    The idea, basically, is to adjust the height of the panel to the number of files in the portfolio.
    Alternatively, is there a way to embed a directive to open by default the Layout pane instead of the Files pane?
    Thank you all in advance for assistance!

    You can control it at initial view time, but not dynamically.  Once its displayed it's user-controlled.
    AFAIK, you can't open it into Layout mode.

  • 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

  • Increasing the height of the Portal Masthead ?

    Hello,  I'm new to SAP EP. Wonder if any of you experts can assist.  We're currently implementing EP version 7.0.
    How do I adjust the height of the masthead (we are increasing the size of our logo on the masthead and consequently we will need to increase the height of the masthead)?

    hi,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e549a890-0201-0010-3f8b-d3b852457ebd
    Go through this pdf. you need to create a new desktop by applying new desktop framework page and  themes as specified in the guide. Before that in portal go to System administration -> portal display -> desktops & display rules. In that select a theme and save as 'new theme' for example. When you click 'new theme', preview opens. In it select 'portal masthead', under which there is an option 'Masthead Height'.
    In it you can specify the height in terms of px in accordance with your height of the logo. You can even insert a new logo from the 'url to logo' option under it.
    Save the theme and this is the new theme which you should assign it to new desktop.
    Hope it helps...
    Revert back if you have any doubts.
    Regards,
    Ganesh N
    Reward useful answers

  • How can i increase the height of the navigation toolbar to make my persona more visible? adding toolbars puts them all below the navi bar and it looks weird. i know this has been asked many times but the answer's always "add toolbars".

    How can i increase the height of the navigation toolbar to make my persona more visible?
    adding toolbars puts them all below the navi bar and it looks weird.
    i know this has been asked many times but the answer's always "add toolbars".

    Look here.
    http://support.apple.com/kb/index?page=answerlink&url=http%3A%2F%2Fsupport.apple .com%2Fkb%2FHT1495&answerid=16777216&src=support_site.home.search

  • 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

  • How to change the height of the column header cells

    Hi,
    I have been working with Oracle BI Discoverer 10g. I want to increase the height of the column header cells. The labels within the column headers are almost cut off. Is there a way to change the height of the column header cells?
    Thanks...

    Hi
    In dic.4.1 ,we are using format heading ,and manipulating by entering extra space and changing font and mode.
    try the same
    Rgds
    NP

  • Thunderbird sometimes changes the height of the letter at will in the middle of a sentence when I'm writing an e-mail.

    Thunderbird sometimes changes the height of the letter at will in the middle of a sentence when I'm writing an e-mail. How can I fix this?

    kaeandcolesmon,
    If you open the recovery drive (partition) it should only have a single folder (Recovery).
    To make sure that your not saving restore points to that drive.
    See:
    Start, Control Panel, System, System Protection tab. Make sure the D drive partition is set to OFF so that it does not save there.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • 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 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 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.

  • 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....

Maybe you are looking for

  • How do you invoke a simple jsp

    hi, i have a very simple jsp that displays the current time. it works on my tomcat server (installed on my computer). i purchased a domain from yahoo, say, www.beginer.com and uploaded the jsp file to the yahoo server. but when i referenced it with t

  • What is the field and Table for "Batch Class" and "Class Type" in QM.

    Hi All, What is the field and Table for "Batch Class" and "Class Type" in QM. Thanks,

  • Maunally manage?

    OK so i realized that i was running low on space on my iPod so I decided to delete a few songs. so I deleted them. then my iPod wouldn't let me so it told me to manually manage my music so I did and I didn't like it. When I try to put it back it says

  • External drive won't mount on desktop or disk utility

    iMac w/optical drive, running 10.6.8 Using a 2 TB Seagate Backkup drive for Mac for Time Machine backups. Time Machine notified me that no backups had been made for 22 days. Drive icon does not show on desktop and is not listed in Disk Utility. Tried

  • Using reflector to call a method on the servant

    hey all! i have the following code to run a function to the objectRef that i keep in an array (jobServers) ... //   jobServers[0].objServerRef.addService(theCallbackObjectRef, number, jobServers);            Class c = Class.forName("WorkflowFramework