1. Desarrollador 1
  2. PowerBuilder
  3. Monday, 20 May 2024 11:00 AM UTC

Hi,

 

Is there a way to hide the picture section of theses items ? I just want to show the text.

Regards,

John Fauss Accepted Answer Pending Moderation
  1. Monday, 20 May 2024 13:42 PM UTC
  2. PowerBuilder
  3. # 1

I believe the only way to accomplish this would be to edit the source for the ancestor menu and change the MenuStyle property from ContemporaryMenu! to TraditionalMenu! Here is an excerpt from an ancestor menu (I've added the spacing and the comments):

on m_master.create
m_master=this
call super::create
this.text = "m_master"

// Supported values are: contemporarymenu! and traditionalmenu!
// Note: This setting affects the look of the ENTIRE menu.
//
// This setting can only be specified in the base/ancestor menu object,
// and it cannot be set (as far as I know) in the Menu Painter.
this.menustyle = contemporarymenu!

this.menutextcolor = 134217735
this.menubackcolor = 16777215
this.menuhighlightcolor = 134217741
this.textsize = -10
this.weight = 400

Best regards, John

Comment
There are no comments made yet.
Chris Pollach @Appeon Accepted Answer Pending Moderation
  1. Monday, 20 May 2024 13:33 PM UTC
  2. PowerBuilder
  3. # 2

Hi;

  One way would be to set the Menu / Toolbar back to "Classic" mode. What your seeing GUI wise is when the menu / toolbar is running in "Contemporary" mode. Food for thought.

Regards ... Chris 

Comment
There are no comments made yet.
  • Page :
  • 1


There are no replies made for this question yet.
However, you are not allowed to reply to this question.