[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference bulova::decw_jan-89_to_nov-90

Title:DECWINDOWS 26-JAN-89 to 29-NOV-90
Notice:See 1639.0 for VMS V5.3 kit; 2043.0 for 5.4 IFT kit
Moderator:STAR::VATNE
Created:Mon Oct 30 1989
Last Modified:Mon Dec 31 1990
Last Successful Update:Fri Jun 06 1997
Number of topics:3726
Total number of notes:19516

2143.0. "Radio Box w/pixel labels under V2" by RABBET::FARRELL (Money, there is no substitute!) Thu Jan 25 1990 11:44


I have a radio box, but the labels are pixels and not text.

This was fine in DECW V1, but when I installed VMS V5.3 & DECW V2, the
little circles to the left of the radio box choices disappear with these
pixel labels.  It still works fine if the labels are text.

Any/all help would be greatly appreciated,

		$$$$ ted $$$$
T.RTitleUserPersonal
Name
DateLines
2143.1indicator resource...RTL::OBRYANWhen in doubt, let the user decide.Thu Jan 25 1990 18:249
re:.0

>little circles to the left of the radio box choices disappear with these
>pixel labels.

The DwtNindicator (boolean) resource controls this.  Try setting it to true.
(This change in behavior may be a bug...)

2143.2still no luck!RABBET::FARRELLMoney, there is no substitute!Wed Jan 31 1990 14:4615

re:.1

>The DwtNindicator (boolean) resource controls this.  Try setting it to true.
>(This change in behavior may be a bug...)

I Tried setting DwtNindicator to true, but this had no affect.  
Could someone please tell me another way around this, this is starting to
put a damper on things.

thanks,

		$$$$ ted $$$$

2143.3another idea...RTL::OBRYANWhen in doubt, let the user decide.Thu Feb 01 1990 11:169
re:.2

>>The DwtNindicator (boolean) resource controls this.  Try setting it to true.
>>(This change in behavior may be a bug...)

>I Tried setting DwtNindicator to true, but this had no affect.  

Did you try calling SetValues on the toggles after they've been created?
2143.4still stuck...RABBET::FARRELLMoney, there is no substitute!Thu Feb 01 1990 13:4512
RE: .3

> Did you try calling SetValues on the toggles after they've been created?

I call a DwtToggleButtonSetState to initialize my starting choice.

Does this count? 

Still stuck...

		$$$$ ted $$$$
2143.5SetValues...RTL::OBRYANWhen in doubt, let the user decide.Thu Feb 01 1990 18:5313
re:.4

>> Did you try calling SetValues on the toggles after they've been created?

>I call a DwtToggleButtonSetState to initialize my starting choice.

I believe that DwtToggleButtonSetState only sets the "value" attribute.  
Try something like:
    XtSetArg( Arg[0], DwtNindicator, FALSE);
    XtSetValues( toggle_widget_id, Arg, 1);

You should QAR the change in behavior.