ToolTip.Show() displays previous data - C# winforms

Hi,
I am facing a pblm while using ToolTip.Show().
I am working on a windows appl. On the form we hv multiple buttons, we can configure the buttons for some frequencies and that freq. will be shown in the tooltip when we move the mouse over the btn.
In the very first time whn i move my mouse on the btn it shows proper data. but when i reconfigure the btn with diff. data and whn i move the mouse over the btn, it shows the previous data and when i take off the mouse and move again on the btn it
shows proper data.
Here is my tool tip fun..
public void setCardBtnToolTip(string toolTipText)
      CardButtonToolTip.RemoveAll();
      CardButtonToolTip.Show(toolTipText, this, 5000);
Any Suggestions...

This function will be called on Mouse_Hover...
private void ConfigureTooltipAnalogCard(string f_strIpAddr)
ChannelsOnAFrequency l_objConfigTooTip = null;
//StringBuilder l_strTooltip = new StringBuilder();
Globals.g_stringBuilder.Length = 0;
string l_strMonitorChn = string.Empty;
string l_strMeasuringChn = string.Empty;
string l_strCardFrequency = string.Empty;
try
if (dCardButton.ContainsKey(f_strIpAddr) && Globals.d.ContainsKey(f_strIpAddr))
CardButtonControl btnCard = dCardButton[f_strIpAddr];
l_objConfigTooTip = Globals.d[f_strIpAddr];
Globals.g_stringBuilder.Append("IP Address :").Append(f_strIpAddr).Append("\n")
.Append("Card Type :").Append(btnCard.CardButtonText).Append("\n")
.Append("Transmission :").Append(l_objConfigTooTip.m_strSignalTrans).Append("\n");
if (l_objConfigTooTip.m_strRmChFreq.Length > 3 && l_objConfigTooTip.m_strSignalTrans == PARAM.Analog)
int l_freq = Convert.ToInt32(l_objConfigTooTip.m_strRmChFreq);
l_strCardFrequency = Convert.ToString(l_freq / 1000000) + " MHz";
else
l_strCardFrequency = l_objConfigTooTip.m_strRmChFreq + " MHz";
if (l_objConfigTooTip.IsAnyChannelBeingMonitored())
SingleChannelDetails singleChannel = l_objConfigTooTip.GetMonitoringChannel();
if (singleChannel != null)
l_strMonitorChn = singleChannel.m_strChannelName;
l_strMeasuringChn = l_objConfigTooTip.GetMeasuredChannelListAsString();
Globals.g_stringBuilder.Append("Frequency :").Append(l_strCardFrequency).Append("\n")
.Append("Monitoring Channel : ").Append(l_strMonitorChn).Append("\n")
.Append("Fingerprint Extraction : ").Append(l_strMeasuringChn).Append("\n");
//l_strTooltip.Append("Frequency :" + l_strCardFrequency + "\n");
//l_strTooltip.Append("Monitoring Channel : " + l_strMonitorChn + "\n");
//l_strTooltip.Append("Fingerprint Extraction : " + l_strMeasuringChn + "\n");
btnCard.SetCardBtnToolTip(Globals.g_stringBuilder.ToString());
Globals.g_stringBuilder.Length = 0;
catch (Exception ex)
Logger.logmsg(Logger.LOG_EX, "@ConfigureTooltipAnalogCard: " + ex.Message + System.Environment.NewLine + ex.StackTrace + System.Environment.NewLine);

Similar Messages

  • Search Help Not show/display the data

    Dear All,
                  I have created a search help whith mannual itab of 4 entries. Itab is filled correctly, but when i see in the screen field it show the search help and display no record with the message 4 entries found; but I can't see the data.
    pls. guide me what can be the problem
    Thanks and Regards,
    Sohail

    Hi,
    If you want to Show the Search help for Particular Field in Screen painter , You must give the Code In PROCESS ON VALUE REQUEST(POV).
    ie.
    process on value-request.
      field P9611-REQ_STATUS  module GET_REQ_STATUS.
    and in Program Give the internal table Fieldname in Capital Letter while Passing in Fuctional Module.
    like.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'REQ_STATUS2'    "internal table field
          dynpprog        = sy-dynnr
          dynpnr          = sy-dynnr
          dynprofield     = 'P9611-REQ_STATUS' "screen field name
          value_org       = 'S'
        TABLES
          value_tab       = req_status_tab "internal table
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc  NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    With Regards
    Kesavaperumal

  • Report is not displaying 'previous day maximum sale' correctly

    There is a issue in the report
    Based on material and date and displays the previous day maximum sale
    The issue is whenever i run the report in give a single Document Date on selection screen it works fine but whenever i run the report in a range it shows the previous date of the range like when i run the report with
    Document date - 05.07.2007, its working fine but and showing 04.07.2007 as previous day
    when run the report
    Document date - 01.07.2007 to 31.07.2007, its displaying 30.07.2007 for all records and not displaying different results based on doc date,
    like it should show for      31.07.2007 --- 30.07.2007 and
                                   30.07.2007 --- 29.07.2007
                                  29.07.2007 --- 28.07.2007     
    CODE :-
    FORM data_retrieval.
    SELECT MSEGMATNR MSEGMBLNR MSEGMENGE MSEGMEINS MSEGCHARG MSEGLGORT MSEGBWART MSEGWERKS MSEGLIFNR MSEGEBELN MSEGBPRME MSEGDMBTR MSEGEXBWR MSEGVKWRT MSEG~SHKZG
           MKPFBLDAT MKPFBUDAT MKPFMBLNR MKPFBKTXT MKPFXABLN MKPFCPUDT MKPFXBLNR MKPFMJAHR
      INTO CORRESPONDING FIELDS OF TABLE itab FROM MSEG
    JOIN MKPF
    ON  MSEGMBLNR = MKPFMBLNR
    where MSEG~MATNR IN S_MATNR
    AND MSEG~WERKS IN S_WERKS
    AND MSEG~LGORT IN S_LGORT
    AND MSEG~CHARG IN S_CHARG
    AND MSEG~LIFNR IN S_LIFNR
    AND MSEG~KUNNR IN S_KUNNR
    AND MSEG~BWART IN S_BWART
    AND MSEG~SOBKZ IN S_SOBKZ
    AND MKPF~BUDAT IN S_BUDAT
    AND MKPF~BLDAT IN S_BLDAT     .
    IF ITAB[] IS NOT INITIAL.
    select matnr vbeln netwr UMKZWI1_01 fkdat ummenge VKORG VGBEL from s961
      into corresponding fields of table IT_S961 FOR ALL ENTRIES IN itab
    where matnr = itab-matnr and fkdat < itab-bldat.
    ENDIF.
    SORT IT_S961 descending BY matnr fkdat ummenge .
      LOOP AT itab INTO wa_itab.
        READ TABLE IT_S961 WITH KEY MATNR = WA_ITAB-MATNR BINARY SEARCH.
        IF sy-subrc = 0.
        wa_itab-VBELN = IT_S961-VBELN.
        wa_itab-NETWR = IT_S961-NETWR.
        wa_itab-UMKZWI1_01 = IT_S961-UMKZWI1_01.
        wa_itab-UMMENGE = IT_S961-UMMENGE.
        wa_itab-VKORG = IT_S961-VKORG.
        wa_itab-VGBEL = IT_S961-VGBEL.
        wa_itab-FKDAT = IT_S961-FKDAT.
        ENDIF.
        MODIFY itab FROM wa_itab TRANSPORTING VBELN NETWR UMKZWI1_01 FKDAT UMMENGE VKORG VGBEL.
        CLEAR : wa_itab.
    ENDLOOP.

    Hi,
    Still values are not coming
    SELECT matnr fkdat ummenge vbeln vkorg vgbel netwr umkzwi1_01 FROM s961
       INTO CORRESPONDING FIELDS OF TABLE it_s961 FOR ALL ENTRIES IN itab
        WHERE matnr = itab-matnr
        AND fkdat EQ itab-previous_dt.
    ENDIF.
      sort it_s961 by matnr vbeln fkdat previous_dt ummenge descending .
      LOOP AT itab INTO wa_itab.
        READ TABLE it_s961 WITH KEY matnr = wa_itab-matnr BINARY SEARCH.
        IF sy-subrc = 0.
          wa_itab-vbeln = it_s961-vbeln.
          wa_itab-netwr = it_s961-netwr.
          wa_itab-umkzwi1_01 = it_s961-umkzwi1_01.
          wa_itab-ummenge = it_s961-ummenge.
          wa_itab-vkorg = it_s961-vkorg.
          wa_itab-vgbel = it_s961-vgbel.
          wa_itab-fkdat = it_s961-fkdat.
        ENDIF.
        MODIFY itab FROM wa_itab TRANSPORTING fkdat ummenge vbeln netwr umkzwi1_01 vkorg vgbel.
        CLEAR : wa_itab.
      ENDLOOP.

  • When click Previous 10 in inner table it show error Stale Data

    In inner table when it have more than 10 records it will automatic show navigate Previous 10 and Next 10 when click Next 10 don't have any error but when click Previous 10 it error as below (show white page).
    Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example).
    Cause:
    The number of displayed records, 10, exceeds the actual number of records, 1, in view object PostFundAM.FaoBudFundSrcsTempVO_FaoBudPeriodsFundTempVL_FaoBudFundSrcsTempVO. Some of the displayed records may have been deleted.
    To proceed, please select the Close Window link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    Could someone help me to solve this problem.
    thanks.

    Yes, there are 2 primary key column, in VO get data from EO.
    I found some solution about navigation as below in dev guid. Is it solution for solve this problem?
    Note: If you have a wide table that requires horizontal scrolling, you can prevent the Next and Previous links from appearing off the screen by setting the Width property of the advancedTable region to 100%.
    Runtime ControlFor event handling, specify the following code in your controller's processFormRequest to check for a navigation event:
    if (GOTO_EVENT.equals(pageContext.getParameter(EVENT_PARAM))
    To check whether the Next link or Previous link is selected:
    if ((tableBean.getName().equals(SOURCE_PARAM)) &&
    (GOTO_EVENT.equals(pageContext.getParameter(EVENT_PARAM)))
    String value = pageContext.getParameter(VALUE_PARAM);
    if (value != null)
    int val = Integer.parseInt(value);
    int newRangeStart = val - 1;
    if (tableVO.getRangeStart() < newRangeStart)
    // next pressed
    else
    // previous pressed
    thanks.

  • I updated my iMac to Mountain Lion. All the files were deleted. I have Time Machine backups. When I restart the mac pressing Command R to restore from backup it shows the previous OS X (Leopard) beside the date of the backup. Will it go back if I restore?

    I updated my iMac to Mountain Lion. All the files were deleted. I have Time Machine backups. When I restart the mac pressing Command R to restore it from the backup it shows the previous OS X (Leopard) beside the date of the backup that I want to select. Will it go back to Leopard if I restore it from the backup?

    No, it won't revert to the prior OS X but you you may have third party apps installed that were compatible with Lion that may not be compatible with Mountain Lion.
    App Compatibility Table - RoaringApps - App compatibility and feature support for OS X & iOS
    After you restore from TM, check HD > Incompatible Software

  • How to display previously entered data in TableModel

    This post is continued from the last one. I was having problem displaying previously entered data into TableModel. someone suggested whether my TableModel is persistent.
    I am sorry to say I am not sure how to make TableModel persistent. Can someone tell me what to do.
    Following is my implementation of TableModel:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.util.*;
    import java.io.*;
    public class UsersModel implements TableModel {
    public static final String[] colNames ={
    "Usernmae",
    "Location"
    public static final Class[] colClasses ={
    String.class,
    String.class,
    public static final int
    USERNAME_COL = 0,
    LOCATION_COL = 1;
    //used to hold a list of TableModelListeners
    protected java.util.List tableModelListeners = new ArrayList();
    protected java.util.List data = new ArrayList();
    public static void main(String []args){
    new UsersModel();
    }//end main
    public UsersModel(){
    public void add(Users u){
    data.add(u);
    and when I need to add new users, I do it in the following way:
    Users u= new Users(n,l);
                        model.add(u);
                                  table.setModel(model);
    I hope someone can help

    Please post the entire class, this certainly won't compile because it does not implement all the TableModel methods. Also, why not base it off of AbstractTableModel?

  • Is there a way to show the end dates of the previous month stand out?

    is there a way to show the end dates of the previous month in bold or make it stand out? so 30,31 and 1st of this month don't all look the same? For example the 30,31st get a regular text since they are a part of the the last month and this month gets bold dates? Its hard to read the dates anyways.

    Pics and more
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    5:05 PM Sunday; January 4, 2009

  • TS4337 Whenever I turn on my computer the ical alias in the dock displays "July 17".  I would like it to show the actual date.  Is there a way to do this and if so, how?

    Whenever I turn on my computer the ical icon always displays the date "July 17".  I would like it to display the correct date.  Is that possible and if so how do I set that up?

    Yes.  I read some other discussions regarding this and have just added the app to my start up list and checked "hide".  I'll see if that works.

  • Show alert after data display from the form

    After query, if date of birth is NULL then display message, but this message must pop up after data displays on the form.
    I try different post triggers, when-new-item-instance, when-validiate-item trigges, they all display message BEFORE the data. Any suggestion?
    Thanks

    hi kathy,
    What you have to do is after the commands to display the data, you give the builtin SYNCHRONIZE; then give message statement. It should work.
    Murthy

  • Issue in clearing of previous data of screen cl_gui_docking_container= free

    Hi All,
    My program displays an idoc list(screen 100). Then if user selects any row in the method
    gets the index no and details of that idoc are displayed in another screen(screen 200) .
    Then control returns to this screen again. Now if user selects any row from idoc list (screen 100) then data is displayed along with data from previous screen .
    In PBO of screen 200 : some code is :
    create object go_docking
              exporting
                dynnr     = '200'
                extension = 65
                side      = cl_gui_docking_container=>dock_at_top.
            create object go_grid_detail
              exporting
                i_parent = go_docking.
    some code
    create object go_custom_cont
              exporting
                container_name = 'DISPLAY_IDOC_CONTENT_200'.
            create object go_grid_detail
              exporting
                i_parent = go_custom_cont.
    some more code
    call method go_grid_detail->set_table_for_first_display
              exporting
                is_layout            = gs_layout
                it_toolbar_excluding = lt_exclude
              changing
                it_fieldcatalog      = fieldcatalog1
    create object go_docking
                exporting
                  dynnr     = '200'
                  extension = 65
                  side      = cl_gui_docking_container=>dock_at_bottom.
              create object go_grid_detail
                exporting
                  i_parent = go_docking.
    In PAI of 200 screen i have used :
    some code      
    free go_grid_detail.
          free go_custom_cont.
          go_docking->free( ).  free go_docking.
    After freeing all data and on call of screen 200 from screen 100 still it shows data from which was there previously on screen 200.
    How can clear all previous data . Even i have free the docking still not working .
    Kindly please help.

    Hi,
    if go_grid_detail is type ref to cl_gui_alv_grid, call go_grid_detail->free( ) before container->free( ).
    Regards,
    Clemens

  • Want to display a date in column heading.

    Hi all,
    Will be thankful, if anyone can tell me how to solve one of the issue i am facing in webi variable display.
    In universe, i am creating one prompt for date and user will enter the desired date, and with respect to that date, the previous date and previous month last working date will come. In my Webi report , i have 3 dates and one measure(Quantity) with other dimensions like Product and Subproduct. 
    I have one cross table in which in want to show the 3 dates as Column heading, Product as row heading and Quantity(measure) in the table body. I have one more dimension as Area... which i want to show in horizontal way, for each Area, i want to show prompted date, previous date and previous month last date. I have created 3 variables.... 
    1. Current date = Max(date) In Report
    2. Previous date = Min(date) In Report
    3. Previous Month last day = (date) where (Rank = 2) ForEach(date)
    By this way, I am able to show Current date and  Previous Month last day in column heading, but not Previous day. Will appreciate if anyone can help me on the issue. let me know if any other information is required.
    Thanks
    Archit Sarwal

    Hi,
    The previous date is the previous business day, it can be dynamic. And previous month's last day is last business day, it can also be dynamic. And Previous daye can also be previous month's last business day in one of the scenerio.
    Actually i am using 3 filters with prompts (common prompt) in universe side. User will enter the date and corrosponding previous business day and previous month's last business day will come. 3 filters are:
    1. Current_Day = @prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent)
    2. Previous_Day = (SELECT TOP 1 Date from [TableName] where Date < @prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent) Order By Date Desc)
    3. Prior_Month last Day = (SELECT TOP 1 Date from [TableName] T where Month(T.Date) = Month(DateAdd(mm,-1,@prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent))) Order By T.Date Desc)
    Dates are coming correct from Universe.  In Webi, i have created variables...
    CurrentDate = max([Date]) In Report
    LastDate = Min([Date]) In Report
    PriorDate = [(Date]) where ([Rank]=2) ForEach ([Date])
    I have calculated Rank for Date, and Rank 2 shows the Prior Date. Also, i have Entity, and want to show these dates for each entity along with 2 -3 more columns that depends on these 3 dates values. I am attaching the screenshot for the sample.
    Thanks
    Archit Sarwal

  • Calendar issue - Does not show entries previous Ja...

    Hi, 
    from beginning of January the calendar of my Lumia does not show any more entries made previously ! It was working  but from I think 7th of January nothing .. The calendar is sync with outlook.com calendar and if I go to http://calendar.live.com I see all my previous data correctly.
    I have tried to do a soft reset , nothing . I have tried to remote outlook.com account and reinsert , nothing !
    I have installed an other calendar application called “chronos calendar” and this one show me some previous data last year but nothing from November-December ... I have written to microsoft community but no more info . I use a lot of the info of calendar for my job and for me it is an important issue !
    I hope a fast solution ...
    Regards,

    Hi,
    You can open a second calendar in a new window and display up to 30 calendars in side-by-side view. You can also overlay calendars to see transparent calendars stacked on top of each other. This view is useful when you want to find a common free time slot
    on several different calendars.
    In Calendar, in the Navigation Pane, right-click the name of another calendar that you want to view.
    Click Open in New Window.
    The calendar that you selected opens in a new Outlook window.
    More information refer to the following article:
    View calendars side-by-side or overlaid
    Niko Cheng
    TechNet Community Support

  • Bridge CS6 occasionally displaying wrong 'Date Created' for .NEF's

    I noticed this problem only recently, and this the third time it happens (that I know of).
    Sometimes my Bridge puts a wrong Date Created (not Date File Created or Date File Modified) on a NEF RAW file, whilst the next one (taken perhaps just a few seconds or a minute later) has the proper date. Strangely the Date File Created & Modified do show the proper creation date.
    Example to clarify:
    Metadata viewed on my D90 itself
    Photo 1 taken on: 30/09/2013, 9:03:26 PM (DD-MM-YYYY)
    Photo 2: 30/09/2013, 9:07:52 PM
    Photo 3: 30/09/2013, 9:08:12 PM
    Photo 4: 30/09/2013, 9:08:34 PM
    Photo 5: 30/09/2013, 9:08:54 PM
    Photo 6: 30/09/2013, 9:09:34 PM
    viewing in bridge:
    Photo 1: Date Created: 30/09/2013, 9:03:26 PM
                   Date File Created: 30/09/2013, 9:03:26 PM
                   Date File Modified: 30/09/2013, 9:03:26 PM
    Photo 2: Date Created: 30/09/2013, 9:07:52 PM
                   Date File Created: 30/09/2013, 9:07:52 PM
                   Date File Modified: 30/09/2013, 9:07:52 PM
    Photo 3: Date Created: 23/09/2013, 7:42:02 PM
                   Date File Created: 30/09/2013, 9:08:12 PM
                   Date File Modified: 30/09/2013, 9:08:12 PM
    Photo 4: Date Created: 30/09/2013, 9:08:34 PM
                   Date File Created: 30/09/2013, 9:08:34 PM
                   Date File Modified: 30/09/2013, 9:08:34 PM
    Photo 5: Date Created: 04/09/2013, 10:14:45 AM
                   Date File Created: 30/09/2013, 9:08:54 PM
                   Date File Modified: 30/09/2013, 9:08:54 PM
    Photo 6: Date Created: 04/09/2013, 10:15:06 AM
                   Date File Created: 30/09/2013, 9:09:34 PM
                   Date File Modified: 30/09/2013, 9:09:34 PM
    As you can see, it's not a 'stable' deviation.
    I could live with it, apart from one problem: the batch rename function only has 'Date Created' as option for renaming with date.
    It's also quite annoying for my photography study, since my teachers might get confused by the wrong date in the Metadata when I turn my photo in.
    I tried compacting the cache whilst my camera's SD card wasn't connected (so the files aren't 'available' anymore), no difference.
    Another thing I tried was to hook my SD card up on a different computer, same result.
    So it might be my SD card, but that doesn't explain why the correct date is shown on my D90 itself, though.
    If anybody here has an idea how to fix / avoid this problem, help is much appreciated.
    Greetings,
    Alex

    I have never inserted the 8GB card in the D3000 before just a minute ago.
    And I just took 7 rapid photo's of my previous post (~1s interval)
    All 7 displayed actual date in my camera, the first 4 displayed a wrong date in bridge (24/09/2013, times; 2:12:16PM, 2:12:20PM, 3:09:24PM and 3:10:26PM). Last 3 displayed proper time in bridge.
    So yea, I'm pretty sure something is wrong. I'll try formatting the SD card (as suggested before) but however you look at it, this doesn't add up.
    edit:
    Well I figured out one thing: if I view the photo's directly on my SD card through bridge, it shows the same date for Date Created, Date File Created and Date File Modified.
    Quite logical, to be honest, since I am viewing the date the file was created on the camera.
    However, if I export photo's with Adobe Photo Downloader (or whatever it's called again), it displays the date those copies were created (by Date File Created). Date File Modified is still ~the same as Date Created since it hasn't been modified since the original creation.
    edit2:
    The formatting seems to have solved the issue, for now anyway. Still have no clue why the SD card got such (occasional) cases of drunkness.

  • How to get the previous data?

    Hi,
    I am monitoring a one moving point with coordinates (Xd,Yd). I want to get the two previous data so that I can calculate the point of origin as (Xo,Yo). I made a calculation that if i have three known points I will be able to get the point of origin. The variable data for the moving point (Xd,Yd) i showed using a slide bar. I want to see in the graph the moving point with the line connected to the point of origin at least.
    But my problem is how can i get the two previous data correctly. Can somebody kindly teach me please.
    Thank you very much.
    Attachments:
    moving point.vi ‏39 KB

    Hi Bong,
    I couldn't open your VI 'cause I'm still running LV7.11... anyway, if I understood what you're asking for, it is quite simple, you just need to drag down the shit register of the for loop as in the attached example SR.vi.
    If you are not using a shit register to plot your data, then it depends on which display you use, but there are some tricks to get previous data... but in my opinion keeping a cluster with (X,Y) in a shift register is a good idea
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    SR.vi ‏19 KB

  • Dynaminc display of date

    Hi guys,
           I got a problem displaying the data in the selection screen..I got a radiobutton i need to give some discription for the radiobutton such that it should display the previous days date dynamically...
    eg: * activity for "15/05/2005"..
       So the date should be dynamic it should show the previous days date.
    Hope u understood my problem.....Pls help me out ASAP.......

    Hi,
    Try this:
    SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN COMMENT /1(30) comm2.
    SELECTION-SCREEN ULINE /1(50).
    selection-screen begin of line.
    SELECTION-SCREEN COMMENT 1(30) comm3.
    PARAMETERS: r1 RADIOBUTTON GROUP rad1.
    selection-screen end of line.
    parameters: r2 RADIOBUTTON GROUP rad1,
                r3 RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN ULINE /1(50).
    AT SELECTION-SCREEN OUTPUT.
      comm1 ='Selection Screen'.
      comm2 ='Select one'.
      comm3 = sy-datum.
      LOOP AT SCREEN.
        IF screen-group1 = 'MG1'.
           screen-intensified = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    I've found the example in the Online Help and added the line with the date.
    HTH
    Stefan

Maybe you are looking for