Change font of radio buttons workd only in wnft

Hi
I have this pproblem, I change the font of th radio button but I can do it only in the new-form-instance, is this correct, I tried with the when-radio-changed trigger but does not anythin,
Some body help me
Thanks

hi
i found the way
this is a example
Set_Radio_Button_Property('ra_periodo','rb_ciclo',prompt_font_weight,font_BOLD);

Similar Messages

  • Is it possible to have Dynamically changing list of  Radio buttons ?

    Hi,
    There is a list box which a list of values like 'State', 'City', etc.
    When the user chooses a value in the list box, based on the value chosen say 'City', I should display a list of Cities. The user should then be allowed to choose 1 and only city from the list.
    Is it possible to have list of radio buttons such that there is 1 radio button for each city and the user can then choose any one of the radio buttons ?
    In this case the number of cities and what those cities are is unknown. So I need to have a dynamically changing list of radio buttons. Is this possible ?
    Version of forms : Forms 6.0.5.
    Thanks in advance
    Aruna

    Hi Aruna
    You can create a lot of radio buttons and hide|display them in runtime. It is more suitable i think to use the t-list instead of radio.

  • Change text for radio button

    Hi all,
    Can we change text of radio button in selection screen after pressing push button?
    On screen, I will have push button for user to select one of two conditions, after selecting, I want radio button text be changed, for example : text > 'upload' will be changed to become 'upload sales'.
    can we?
    thanks
    Alia

    Hi alia,
    1. Very simple.
    2. The Important thing is
        NAME of the RADIO BUTTON.
    eg. name is XYZ.
         then we can access it in program like this :
        %_XYZ_%_app_%-text = 'Hello Sir'.
      (Please note the FORMAT - Its important)
    3. try this code (just copy paste in new program)
      IT WILL CHANGE TEXT OF RADIO BUTTONS
      WHEN PUSHBUTTON IS CLICKED.
    REPORT abc.
    PARAMETERS : abc  RADIOBUTTON GROUP g1,
                 xyz  RADIOBUTTON GROUP g1.
    SELECTION-SCREEN : PUSHBUTTON /15(25) pb USER-COMMAND pp .
    ABC, XYZ
    AT SELECTION-SCREEN .
      IF sy-ucomm = 'PP'.
        %_abc_%_app_%-text = 'Hello Sir'.
        %_xyz_%_app_%-text = 'How are u ?'.
      ENDIF.
    regards,
    amit m.

  • Changing Font Of Multiple Buttons

    Hey ya'll! First off i'm new here and it looks like you guys
    know what you're talking about. i searched the forums but could not
    find any help (perhaps i wasn't' looking hard enough) ANYWAY here
    is the deal:
    i'm a complete n00b.
    I have a flash movie with multiple buttons and want to change
    the fonts of ALL buttons simultaneously (it changes color on
    mouseover, so i want to change the font of the text which is a
    different color... ... the fla file is here.... i can make any
    changes necessary and start over if need be (its a pretty simple
    flash menu i guess) any help with optimization and efficiency would
    be appreciated.
    thanks in advance
    http://gmoonit.com/matt/flashmenu.swf
    http://gmoonit.com/matt/flashmenu.fla
    http://gmoonit.com/matt/flashmenu.html
    you can send files to [email protected]
    aim: gmoonit
    msn: [email protected]
    yahoo: [email protected]
    meebo: gmoonit

    gmoonit wrote:
    > Hey ya'll! First off i'm new here and it looks like you
    guys know what you're
    > talking about. i searched the forums but could not find
    any help (perhaps i
    > wasn't' looking hard enough) ANYWAY here is the deal:
    > i'm a complete n00b.
    > I have a flash movie with multiple buttons and want to
    change the fonts of ALL
    > buttons simultaneously (it changes color on mouseover,
    so i want to change the
    > font of the text which is a different color... ... the
    fla file is here.... i
    > can make any changes necessary and start over if need be
    (its a pretty simple
    > flash menu i guess) any help with optimization and
    efficiency would be
    > appreciated.
    You need to edit each button individually, one by one.
    The only time when multiple buttons get changed all at once
    is when you
    design it fully dynamic. One button/movie clip, duplicated,
    multiplied and
    control by action script.
    In your case, you need to change one by one manually.
    By the way, take note that the forum is connected to News
    Server. Many of us
    never use the browser based forum so by bumping your post,
    you only make it appear
    answered and your chances of getting help get smaller as we
    usually go for the
    unanswered threads only.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Chaange font of radio buttons

    How can I change the font of the radio buttons, I need
    works in the web
    tahnks

    hi
    i found the way
    this is a example
    Set_Radio_Button_Property('ra_periodo','rb_ciclo',prompt_font_weight,font_BOLD);

  • Disabling radio button and only keep one active out of all...

    Hello Gurus,
    I have 4 radio button names as RD1. RD2, RD3 and in the last RD4.
    Now when user excutes the transaction, I want only RD3 to be selected and RD1, RD2 and RD4 to be inactive (greyed out). I tried couple of ways but its not happening.
    Please help.
    AT SELECTION-SCREEN OUTPUT.
      if sy-tcode = 'ZCUST'.
        loop at screen.
         if screen-name = 'RD1'. 
            screen-active = 0.
            MODIFY SCREEN.
          endif.
          if screen-name = 'RD2'. 
            screen-active = 0.
            MODIFY SCREEN.
          endif.
          if screen-name = 'RD4'.  
            screen-active = 0.
            MODIFY SCREEN.
          endif.
        endloop.
      endif.
    Regards,
    TGSHAH.

    Please use the below code. This works fine .. i have tested it ...
    thx
    PARAMETERS: p_unix1  TYPE  c RADIOBUTTON GROUP ft1 USER-COMMAND usr1 DEFAULT 'X',
                p_netw1  TYPE  c RADIOBUTTON GROUP ft1,
                p_netw2  TYPE  c RADIOBUTTON GROUP ft1,
                p_netw3  TYPE  c RADIOBUTTON GROUP ft1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
          IF screen-name = 'P_UNIX1'.
            screen-input = '1'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW1'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW2'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW3'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          endloop.

  • Use 3 button or property to change selection of radio buttons?

    Hi all,
    I have LV 7.1 and am trying to write a process that allows the user to select the next action following the execution of several Case Structure steps.  The VI is basically thus: (sorry I can't cut-n-paste a graphic, it's on another pc.)
    While loop:--->radio button (Manual, Cycle, Auto Test)----> Case Structure (Manual, Cycle, Auto Test)--->Nested Case Structure within the "Auto Test" Case above with 13 cases ("0" to "12")
    On case "12" of the nested case structure, I want to provide a 3-button dialog box (or something that works) which allows the user to select the next test mode (i.e. the 1st case structure: "Manual", "Cycle", "Auto Test").  I can't figure out how to send anything that the property node "Value" of the radio button can use for this selection.  When I create an indicator to see what is sent from the 3-button, it shows ("Left", "Center", or "Right") "Button" strings.  The radio button "Value" property node needs an enum.  The labels on the 3-button don't seem have any consequence. 
    Any Suggestions? 
    Best Regards,
    Ed

    Dev,
    Thanks for the reply.  I experimented with the Property Node and Radio Button control extensively and figured out my problem.  It had to do with the difference between Labels, Captions, and Boolean Text.  I believe I had a caption on one of my buttons rather than the label, so the property node didn't see it as an option.  Through all the help screens that had the option of explaining this to me, it wasn't until I had fixed the problem before I found one that addressed the differences between those terms.  I'll attach my experiment vi (created with LV 7.1) for anyone like myself (non-programmer, inexperienced LabVIEW'er) that would like to see the basic function.
    Attachments:
    Property node experiment.vi ‏56 KB

  • I can't change font size. It goes only from 1 to 9 and can't enter an especific number.

    I use Mac and for the first time I face this problem... I used to be able to enter the font size lik 32, 48, 96... any number in flash CC I can't. Is there any way I can change this? I looked in preferences and found nothing!

    Hi Agda,
    This is a truncation issue which we are investigating, however the functionality should work as expected as the size filed still has the information that you have entered say if you enter 12 you might see only 1 in properties panel whereas it has the value of 12 and your text on stage should get applied with 12 pt size.
    Hope this helps.
    Thanks!
    Mohan 

  • How to change font size on Write screen only

    The Thunderbird Write (compose) screen allows font choices for HTML e-mails, but not font sizes in traditional 'points.' There is an up/down button set on the screen, and a setup option for small/medium/large, etc.
    By sending myself mail, and reading it in another popular mail client, I see that "medium" is 12-point type, which is what I want. But when I select medium as my default, the text on the Write screen is too small, nowhere near 12 points by eyeball. If I make the font bigger on the Write screen so that I can read it, then it is received as 14pt or 18pt.
    There must be a way to choose what you see on the Write screen, independently of what is actually coded into HTML and sent. Sure enough, I can do Ctrl/Shift/+, and that makes the text on the screen larger (leaving images untouched, thanks!) , but it's back to tiny the next time I open the program. Is there a way to make this text magnification 'stick'?

    Thanks so much; everything worked as you said. And the stationary suggestions seems like the right thing to do, too.

  • Changing ViewStack using Radio Buttons

    Any examples I can refer to? Any help much appreciated.
    Thanks (from a newbie).

    Thanks Eric...that did the trick.

  • [Flex 4.5.1] How to prevent Radio Button from being selected when clicked on? No Changing Event?

    I have a very common use case where you have a few radio buttons and only one can be selected at a time. Some of them are basic and on click should be selected right away, but other are more complex and open a pop up which requires some additional user selections after which the user selected OK or CANCEL for example and only after that the selection of the radio button should be applied programatically.
    So to solve this issue I've come up with 2 workarounds:
    1) make the entire group, that holds the radio button, act as a button with buttonMode="true" mouseChildren="false" and programatically change the radio button within it.
    2) hold the current radio button selection in a variable and in the changeHandler of that radio button return the selection back to what was selected before. But this also causes a small flickering of the radio button which gets selected and deselected immediately after that.. not cool.
    So my question is... is there something I am missing that could do the job without these workarounds... like a Changing event which I use for the ButtonBar but I can't find on the RadioButton or RadioButtonGroup... thanks!

    Hi,thanks for the reply. Actually that was my third option, but not sure if it's very good also..
    Here is a simple scenario:
    User must select between 2 radio buttons:
    1) no volume -> sets variable volume=0 and selects the radio button (that is the normal use case)
    2) set volume -> opens up a pop up with a list that has a X button to close and 4 options: 25% volume, 50% volume, 75%, 100%
    At this point the set volume radio button should not be selected and the user has 2 choices:
    -> hit the X button to close - nothing changes and no volume radio button is still selected and volume is still = 0
    -> hit one of the volume % buttons -> the set volume radio button gets selected and the variable volume=25/50/75/100 depending on the button selected by the user.
    That's a pretty common scenario and it's bugging me that I can't easily alter the radio button selection logic since whenever I click it, it gets selected and I can't put a logic in between in a standard way. This should apply to any component with selection, just like ButtonBar has it with the Changing event.
    So is there any other more convenient way to accomplish this scenario that you could recommend?
    Thanks!

  • Changing radio buttons label

    Hello.
    How can I programatically change label of radio buttons?
    I have a radio group named test and 2 radio buttons named t1 and t2.
    I've tried to set labels with Set_item_property('t1', label, 'aaa'); I got FRM-41045. What am I doing wrong?
    Natasa

    Natasa,
    I tink that you don't have access to individual radio button labels because the radio group is the Forms iten that set item property operates on. The work around is to forget about setting the readio button labels within the Forms properties and to use Forms display items instead.
    Adjust the display label so that they become labels for the radio button and this should do it.
    Frank

  • Run time change # of radio button and boolean text

    does Labview 8 support run time programmically change number of radio button and boolean text for each radio button?
    Thanks,
    DG

    You can also customize a slide control to look like radio buttons. You can control the text labels and the number of element through a property (by changing the scale properties). If you really want it to look like radio buttons, you can try ripping the images from the dialog radio button. Also, to save some time, you can get the OpenG buttons package, which includes a slide customized to look like radio buttons. The main problem with this is that changing the number of items does not change the size of the control and that makes the dot filling the radio buttons look compressed.
    Another option is to create an array of radio buttons, but then you will have to handle the logic yourself.
    Try to take over the world!

  • Radio button state on region load...

    Is there a way to set the radio button state (click event) on a region load? The default value of 0 (read-only) works when clicked, but doesn't when the page initially loads, and it's like the button click event needs to take place at the region load time. The values are 1 and 0 set statically if that matters, and the hidden value does not get changed when the radio button with the value of 1 is selected.
    The button makes the button visible when 'edit' is selected and the button disappears when 'read-only' is selected which is the expected behavior.
    I do have a condition on the 'save' button for the value to not be zero which is based on the value from the radio button.
    My gut says it'll be a region header attribute or Java Script sort of thing and I've not found anything so far, and I'm hoping there's an Apex guru out there that has a recommendation.
    Thanks in advance!
    Matt

    I used some source I found on Denes' web site and added the call, but it didn't yield the result I was hoping for.
    <script type="text/javascript" language="javascript">
    $s('P8_RADIO_BUTTON','0');
    function f_showhideButtonRadio(pThis, pValue)
    {     var show_or_hide = html_RadioValue(pValue);
    if (show_or_hide == 0)
    {html_HideElement(pThis);}
    else
    {html_ShowElement(pThis);}
    function f_showhideButtonSelect(pThis, pValue)
    {     var show_or_hide = $x(pValue).value;
    if (show_or_hide == 0)
    {html_HideElement(pThis);}
    else
    {html_ShowElement(pThis);}
    </script>
    I'm quite new to the Java Script in Apex, so if I hosed this up, please let me know. Also, does that set the click event on or does that just set the value? The reason I ask is with a 0 or 1 it yielded the same result.
    Thanks!
    Matt

  • Radio buttons disabling functionality in OOPS ALV

    Hi,
    I am facing this peculiar problem in OOPS ALV. the requirement was to have a field and 2 radio buttons in ALV as editable when user clicks on CHANGE mode. but initially the table should be in display mode.
    I have used the icons in ALV to provide the radio button functioanlity and its working.. but cant find solution to these 2 issues:
    1) how to make radio button display only ?
    2) when appending a new row in the ALV, its just appending a row with 4 columns ( 2 of field and 2 of radio button), but it is not able to append icons by default.
    KIndly provide help on this. let me know if u need to clarify anything..
    Thankx in advance,
    Rohan Malik

    Hi Rohan,
    Not sure whether I understood your question correctly. I cant visualise your output .
    To add icons while appending a new row to the output
    First of all you need to have  a field icon ( of type icon_d ) in your output table.
    While appending the row you have to explicitly right the icon name to that field
    l_record-icon = '@#12' something like that  which you get from the type pool icons

Maybe you are looking for

  • Anyone using a LaCie external SATA drive?

    LaCie has a "LaCie Two Big with PCI-E Card 2-Disk RAID System with SATA II" which might work for my purposes. I'm using a late 2005 G5 Quad with PCI-Express slots. I wonder if anyone with a similar G5 has tried this drive and might say what their exp

  • Quiz app in jsp using xml as datasource

    Hi if one wants to set up a simple application like a quiz app that stores all its question in an xml file. The basic structure is like a java class reading from the xml using DOM/SAX then writing the info in the bean then getting that info in a jsp

  • Buffer values not getting captured

    Hello Forum, Im Using the standard Function Module "API_SEMBPS_VARIABLE_GETDETAIL" to read the Values from the buffer table. But when i debug this particular function module the values in the Buffer table are not showing up. And it shows that the buf

  • How to reset iCloud for a fresh sync?

    Hi, I am in big trouble. Today I lost all my calendar events in 8 iCloud calenders on my Calendar (MacBook Pro). iCloud sync did what it has to do: It synced and all events were deleted in the iCloud. All my Apple device (iPad and iPhone) synced, too

  • Sales Order Pegging Information

    Hi All, When we do the Availability check for line item of Sales Order in SAP, in which tables does Promise gets stored? Also what is the table which stores the pegging information? Appreciate your help in advance. Thanks, Chandravadan