Error Radio-Set vertical attribute is not working

markluizdemauro27

New Member
DEFINE VARIABLE inputProductGroups AS INTEGER VIEW-AS RADIO-SET VERTICAL
RADIO-BUTTONS
"All Products", 1,
"BUA/BUB Products", 2.

FORM
inputProductGroups LABEL "Products" COLON 20
WITH FRAME a SIDE-LABELS.

I don't know why vertical attribute is not working and still displaying horizontal. Any ideas why?
 

Rob Fitzpatrick

ProgressTalk.com Sponsor
Code:
DEFINE VARIABLE inputProductGroups AS INTEGER VIEW-AS RADIO-SET VERTICAL
RADIO-BUTTONS
"All Products", 1,
"BUA/BUB Products", 2.

FORM
inputProductGroups LABEL "Products" COLON 20
WITH FRAME a SIDE-LABELS.

update inputProductGroups with frame a.

Output:
Code:
┌────────────────────────────────────────┐
│           Products: (X)All Products    │
│                     ( )BUA/BUB Products│
└────────────────────────────────────────┘

The radio-set is vertical for me. Tested in 64-bit OE 12.4 CHUI on Windows. Also works in GUI client.

Can you show us your output and give some platform details?
 

TomBascom

Curmudgeon
Like Rob, I tried it, as is, in a GUI editor window and it works as expected.

Have you run your sample snippet in a stand-alone Window and got that result? Or are you just sharing a small portion of a much larger program?

If it is part of a larger program then perhaps something else is interacting in an unexpected way. You would need to show the rest of any surrounding code for us to have useful suggestions regarding what that might be.

Also - I have no idea what version of OpenEdge "QAD Enterprise Applications version 3.0.0.127" uses. So our tests may not have any relevance. For what it is worth, I I tested with OpenEdge 12.2.4
 
Top