How to access standard toolbar of IE

Hi
Can anyone have some idea about accessing standard toolbar of IE just like we can now access sys tray of Windows.
I want the functionality of Yahoo IM so that when any user install my application an icon(shortcut) for that should be added to IE toolbar
If this is possible in java only or with JNI
Please guide me
Thanks

Microsoft uses ODE and DDE. What you want to use is OLE, and as such, I believe you are going to have to do some JNI programming to get Java to work with that interface the way you intend.

Similar Messages

  • Menupainter: How to disable - Standard toolbar -

    Hi All,
    I wish to disable few buttons in Standard toolbar in a  report output.This report is obtained from a standard program.Kindly suggest a solution.
    Regards
    Tina

    Hi,
    you are calling standard Transaction.
    get the main program name and pf-status name.
    and then collect the okcodes(function codes) for the buttons which you want to exclude.
    now you have to append to the table of type sy-ucomm.
    then call this way..
    data: p_extab type table of sy-ucomm.
    append 'ENTR' to p_extab.
    SET PF-STATUS 'STATUS'  OF PROGRAM 'ZTEST_PROG' excluding p_extab.
    Regards
    vijay

  • ALV List Standard toolbar

    How to display standard toolbar buttons in ALV which are not displayed in REUSE_ALV_GRID_DISPLAY

    HI
    GOOD
    GO THROUGH THIS REPORT
    TYPE-POOLS: SLIS.
    DATA: FIELDCAT           TYPE SLIS_T_FIELDCAT_ALV,
          FIELDCAT_LN        LIKE LINE OF FIELDCAT,
          SORTCAT            TYPE SLIS_T_SORTINFO_ALV,
          SORTCAT_LN         LIKE LINE OF SORTCAT,
          EVENTCAT           TYPE SLIS_T_EVENT,
          EVENTCAT_LN        LIKE LINE OF EVENTCAT,
          LAYOUT             TYPE SLIS_LAYOUT_ALV,
          C_TOP_OF_PAGE      TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
          W_LIST_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER.
    DATA: COL_POS TYPE I,
          P_LIGNAM TYPE SLIS_FIELDNAME VALUE  'STATUS'.
    ******Declare Data Areas for List Viewer (End)**************
    Other Variables
    DATA: W_DATUM(10) TYPE C. "Convert system Date for Output
    ******Declare Internal Table to Store Selected Data (Begin)*
    DATA: BEGIN OF IREPO OCCURS   0,
            EQUNR LIKE EQUI-EQUNR,
            EQKTX LIKE EQKT-EQKTX, "description
            ERDAT LIKE EQUI-ERDAT,
            ERNAM LIKE EQUI-ERNAM,
            AEDAT LIKE EQUI-AEDAT,
            AENAM LIKE EQUI-AENAM,
            EQART LIKE EQUI-EQART,
            INBDT LIKE EQUI-INBDT,
            ZZ_DESPATCH LIKE EQUI-ZZ_DESPATCH,
            ( ten million other Z fields)
            VKBUR LIKE ILOA-VKBUR, "Sales Office
            SWERK LIKE ILOA-SWERK, "Base Plant
            KOSTL LIKE ILOA-KOSTL, "Cost Centre
            ANLNR LIKE ITOB-ANLNR, "Asset Number
            NAME1 LIKE LFA1-NAME1, "Haulier name
            STATUS TYPE C,         "Is it flagged for deletion?
          END OF IREPO.
    Table for descriptions
    DATA: BEGIN OF IEQKT OCCURS 0,
            EQUNR LIKE EQKT-EQUNR,
            EQKTX LIKE EQKT-EQKTX,
          END OF IEQKT.
    LOD Names - Internal Buffering
    DATA: BEGIN OF VENDLIST OCCURS 0,
             LIFNR LIKE LFA1-LIFNR, "Vendor Number
             NAME1 LIKE LFA1-NAME1, "Vendor Name
          END OF VENDLIST.
    ******Declare Internal Table to Store Selected Data (End)**
    TABLES: EQUI,ILOA.
    *******Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: P_EQUNR FOR EQUI-EQUNR,       "Fleet Number
                    P_PLATE FOR EQUI-ZZ_PLATE_NO, "Registration
                    P_EQART FOR EQUI-EQART.       "Truck Type
    PARAMETER: EXCLUDE AS CHECKBOX.               "Exclude Deleted Trucks
    SELECTION-SCREEN END OF BLOCK BLK1.
    SELECTION-SCREEN BEGIN OF BLOCK BLK2 WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS: P_DESPG    FOR EQUI-ZZ_DESPATCH, "Dgroup
                    P_VKBUR    FOR ILOA-VKBUR,       "Sales Office
                    P_SWERK    FOR ILOA-SWERK.       "Plant
    SELECTION-SCREEN END OF BLOCK BLK2.
    SELECTION-SCREEN BEGIN OF BLOCK BLK3 WITH FRAME TITLE TEXT-003.
    SELECT-OPTIONS: P_HAULER FOR EQUI-ZZ_HAULER.    "Haulier Vendor
    SELECTION-SCREEN END OF BLOCK BLK3.
    *******Select Data into Internal Table (Begin) ***************
    START-OF-SELECTION.
       CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING
                 TEXT       = 'Reading Truck Master Table' .
    SELECT EQUIEQUNR EQUIEQART EQUIERNAM EQUIERDAT EQUI~AENAM
           EQUIAEDAT EQUIINBDT
            EQUI~ZZ_DESPATCH
            ( ten million custom Z fields )
            EQUI~ZZ_TIMEZONE
           ILOAVKBUR ILOASWERK ILOA~KOSTL
           INTO CORRESPONDING FIELDS OF TABLE IREPO
              FROM ( EQUI INNER JOIN EQUZ ON
                    EQUIEQUNR = EQUZEQUNR )
                  INNER JOIN ILOA ON
                    EQUZILOAN = ILOAILOAN
           WHERE EQUI~EQUNR       IN P_EQUNR "Fleet Number
           AND   EQUI~EQART       IN P_EQART "Truck Type
           AND   EQUI~ZZ_PLATE_NO IN P_PLATE "Registration
           AND   EQUI~ZZ_DESPATCH IN P_DESPG "Despatch Group
           AND   EQUI~ZZ_HAULER   IN P_HAULER"Vendor
           AND   ILOA~SWERK       IN P_SWERK "Plant
           AND   ILOA~VKBUR       IN P_VKBUR."Sales Office
    If successful go and get the descriptions
        IF SY-SUBRC EQ 0.
           CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
                EXPORTING
                TEXT       = 'Reading Descriptions' .
           SELECT EQUNR EQKTX FROM EQKT
                  INTO CORRESPONDING FIELDS OF TABLE IEQKT
                  FOR ALL ENTRIES IN IREPO
                  WHERE EQUNR = IREPO-EQUNR
                  AND   SPRAS = 'EN'.
            SORT IEQKT BY EQUNR.
        ENDIF.
       CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING
                 TEXT       = 'Check For Deletion Flags' .
      DATA: L_EQUNR LIKE EQUI-EQUNR,
            L_OBJNR LIKE JEST-OBJNR.
    LOOP AT IREPO.
        CONCATENATE 'IE' IREPO-EQUNR INTO L_OBJNR.
    Start off by saying that the Truck is OK
        IREPO-STATUS = '3'.
    Now see if the Truck has been flagged as Inactive e.g. under repair
        PERFORM STATUS_CHECK USING L_OBJNR 'I0320'.
        IF SY-SUBRC EQ 0.
           IREPO-STATUS = '2'. "It's inactive
        ENDIF.
    Now see if the Truck has been flagged for deletion.
        PERFORM STATUS_CHECK USING L_OBJNR 'I0076'.
        IF SY-SUBRC EQ 0.
           IREPO-STATUS = '1'. "It's deleted
        ENDIF.
    MODIFY IREPO.
    CLEAR  IREPO.
    ENDLOOP.
    If exclude is chosen lose deleted items
    IF EXCLUDE = 'X'.
       DELETE IREPO WHERE STATUS = '1'.
    ENDIF.
    Final processing
       CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING
                 TEXT       = 'Prepare Data for Display' .
      SORT IREPO BY EQUNR.
      LOOP AT IREPO.
    Get Description of Truck
        READ TABLE IEQKT WITH KEY EQUNR = IREPO-EQUNR BINARY SEARCH.
        IF SY-SUBRC EQ 0.
           IREPO-EQKTX = IEQKT-EQKTX.
        ELSE.
           IREPO-EQKTX = 'No Description in Truck Master'.
        ENDIF.
    Get Name of Owner
        READ TABLE VENDLIST WITH KEY LIFNR = IREPO-ZZ_HAULER BINARY SEARCH.
        IF SY-SUBRC NE 0.
           SELECT SINGLE NAME1 FROM LFA1 INTO IREPO-NAME1
                  WHERE LIFNR = IREPO-ZZ_HAULER.
           VENDLIST-LIFNR = IREPO-ZZ_HAULER.
           VENDLIST-NAME1 = IREPO-NAME1.
           APPEND VENDLIST.
           SORT VENDLIST BY LIFNR.
        ELSE.
           IREPO-NAME1 = VENDLIST-NAME1.
        ENDIF.
        MODIFY IREPO.
        CLEAR IREPO.
      ENDLOOP.
    END-OF-SELECTION.
    Select Data into Internal Table (End) ****************
    Build Field Catalogs (Begin)**************************
    Fields with Standard Names
    PERFORM RESETVALUES.
    PERFORM ADDFIELD USING '1' 'EQUI' 'STATUS'. "Traffic Lights
    FIELDCAT_LN-HOTSPOT = 'X'.
    FIELDCAT_LN-KEY     = 'X'.
    PERFORM ADDFIELD USING '2' 'EQUI' 'EQUNR'.  "Fleet Number
    PERFORM ADDFIELD USING '3' 'EQKT' 'EQKTX'.  "Description
    PERFORM ADDFIELD USING '4' 'EQUI' 'ZZ_PLATE_NO'.
    PERFORM ADDFIELD USING '5' 'EQUI' 'EQART'.
    PERFORM ADDFIELD USING '6' 'ILOA' 'SWERK'.
    PERFORM ADDFIELD USING '8' 'ILOA' 'KOSTL'.
    PERFORM ADDFIELD USING '9' 'EQUI' 'ZZ_MINLOADSIZE'.
    PERFORM HIDFIELD USING '10' 'EQUI' 'ERNAM'.
    PERFORM HIDFIELD USING '11' 'EQUI' 'AEDAT'.
    PERFORM HIDFIELD USING '12' 'EQUI' 'AENAM'.
    PERFORM HIDFIELD USING '13' 'EQUI' 'INBDT'.
    ( ten million custom Z fields )
    PERFORM HIDFIELD USING '56' 'EQUI' 'ZZ_TIMEZONE'.
    PERFORM HIDFIELD USING '57' 'ILOA' 'VKBUR'.
    PERFORM HIDFIELD USING '58' 'EQUI' 'ZZ_HAULER'.
    PERFORM HIDFIELD USING '59' 'EQUI' 'ERDAT'.
    Fields with Custom Names
    PERFORM NEWNAME USING 'Haulier Name'.
    FIELDCAT_LN-OUTPUTLEN = '20'.
    PERFORM ADDFIELD USING '7' 'LFA1' 'NAME1'. "Haulier Vendor Name
    PERFORM NEWNAME USING 'Tare Time'.
    PERFORM HIDFIELD USING '54' 'EQUI' 'ZZ_TARE_TIME'.
    PERFORM NEWNAME USING 'Trailer 1'.
    PERFORM HIDFIELD USING '19' 'EQUI' 'ZZ_TRAILER1'.
    PERFORM NEWNAME USING 'Trailer 2'.
    PERFORM HIDFIELD USING '20' 'EQUI' 'ZZ_TRAILER2'.
    PERFORM NEWNAME USING 'Trailer 3'.
    PERFORM HIDFIELD USING '21' 'EQUI' 'ZZ_TRAILER3'.
    Sort Criteria
    PERFORM BUILD_SORTCAT.
    ******Build Event Catalog (Begin)****************************
    PERFORM BUILD_EVENTCAT.
    Magic box for selection criteria & traffic lights for truck status
    PERFORM BUILD_LAYOUT.
    ********Add a header at the top of the report            *******
    PERFORM SET_REPORT_HEADER USING W_LIST_TOP_OF_PAGE[].
    ********Start List Viewer
    PERFORM START_LIST_VIEWER.
    ******Start List Viewer (End)********************************
    ********FORM ROUTINES (Begin)********************************
    Start Values for ALV Field Catalouge
    FORM RESETVALUES.
    FIELDCAT_LN-KEY = SPACE.
    FIELDCAT_LN-DO_SUM = SPACE.
    FIELDCAT_LN-NO_OUT = SPACE.
    FIELDCAT_LN-QFIELDNAME = SPACE.
    FIELDCAT_LN-HOTSPOT = SPACE.
    FIELDCAT_LN-OUTPUTLEN = '0'.
    CLEAR: fieldcat_ln-seltext_l, fieldcat_ln-seltext_m,  
            fieldcat_ln-seltext_s, fieldcat_ln-reptext_ddic.
    ENDFORM.
    Change key values for additional fields
    FORM ADDFIELD USING POSITION TABLE_VALUE FIELD_VALUE.
         FIELDCAT_LN-REF_TABNAME = TABLE_VALUE .
         FIELDCAT_LN-FIELDNAME   = FIELD_VALUE.
         FIELDCAT_LN-COL_POS     = POSITION.
         APPEND FIELDCAT_LN TO FIELDCAT.
         PERFORM RESETVALUES.
    ENDFORM.
    FORM HIDFIELD USING POSITION TABLE_VALUE FIELD_VALUE.
         FIELDCAT_LN-NO_OUT = 'X'.
         FIELDCAT_LN-REF_TABNAME = TABLE_VALUE .
         FIELDCAT_LN-FIELDNAME   = FIELD_VALUE.
         FIELDCAT_LN-COL_POS     = POSITION.
         APPEND FIELDCAT_LN TO FIELDCAT.
         PERFORM RESETVALUES.
    ENDFORM.
    FORM NEWNAME USING NAME.
      FIELDCAT_LN-SELTEXT_L = NAME..
      FIELDCAT_LN-SELTEXT_M = NAME.
      FIELDCAT_LN-SELTEXT_S = NAME.
      FIELDCAT_LN-REPTEXT_DDIC = NAME.
      FIELDCAT_LN-OUTPUTLEN = '10'.
    ENDFORM.
    Sort Criteria
    FORM BUILD_SORTCAT.
    SORTCAT_LN-SPOS = '1'.
    SORTCAT_LN-FIELDNAME = 'EQUNR'. "Truck Number
    SORTCAT_LN-UP = 'X'.
    SORTCAT_LN-DOWN = SPACE.
    SORTCAT_LN-SUBTOT = SPACE.
    APPEND SORTCAT_LN TO SORTCAT.
    ENDFORM.
    FORM BUILD_EVENTCAT.
      EVENTCAT_LN-NAME = C_TOP_OF_PAGE.
      EVENTCAT_LN-FORM = C_TOP_OF_PAGE.
      APPEND EVENTCAT_LN TO EVENTCAT.
    ENDFORM.                               " BUILD_EVENTCAT
    Add an extra button to get an extra button the user can press to
    see what selection criteria they entered
    This info will then appear when the report is printed
    FORM BUILD_LAYOUT.
         LAYOUT-GET_SELINFOS = 'X'.
    Now we want a traffic light to say if the Truck is deleted
    the variable p_lignam contains the name in IREPO which stores the
    value for the traffic light
         LAYOUT-LIGHTS_FIELDNAME = P_LIGNAM.
         LAYOUT-LIGHTS_CONDENSE =  'X'.
    ENDFORM.
    Invoke a custom status (toolbar) in case we want to add any extra
    icons at a later date
    FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'STAND' EXCLUDING EXTAB.
    ENDFORM.
    FORM START_LIST_VIEWER.
    DATA: PGM LIKE SY-REPID.
    PGM = SY-REPID.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
         EXPORTING
              I_CALLBACK_PROGRAM       = PGM
              I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
              I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
              IS_LAYOUT                = LAYOUT
              IT_FIELDCAT              = FIELDCAT
              IT_SORT                  = SORTCAT
              I_SAVE                   = 'A'
              IT_EVENTS                = EVENTCAT[]
          TABLES
               T_OUTTAB                 = IREPO
          EXCEPTIONS
               PROGRAM_ERROR            = 1
               OTHERS                   = 2.
    ENDFORM.
    *******Process Call Back Events (Begin)**************************
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM
                           SELFIELD TYPE SLIS_SELFIELD.
    READ TABLE IREPO INDEX SELFIELD-TABINDEX.
    CHECK SY-SUBRC = 0.
    CASE UCOMM.
    WHEN '&IC1'.
    CASE SELFIELD-SEL_TAB_FIELD.
    WHEN 'IREPO-EQUNR'.
    Set Parameter ID and call ZTM3
    Custom transaction to view Trucks
    SET PARAMETER ID 'EQN' FIELD IREPO-EQUNR.
    CALL TRANSACTION 'ZTM3' AND SKIP FIRST SCREEN.
    ENDCASE.
    ENDCASE.
    ENDFORM.
    *******Process Call Back Events (End)*****************************
    Routine to print out user at the top
    FORM SET_REPORT_HEADER USING LT_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER.
      DATA: LS_LINE TYPE SLIS_LISTHEADER.
      PERFORM CONVERT_DATE.
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'H'.
      LS_LINE-INFO = 'ZT01 : Truck Master Data Report'.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'S'.
      LS_LINE-KEY  = 'Run On :'.
      LS_LINE-INFO = W_DATUM.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      LS_LINE-KEY  = 'User Name :'.
      LS_LINE-INFO = SY-UNAME.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
    ENDFORM.                               " SET_REPORT_HEADER
    FORM CONVERT_DATE.
      CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
           EXPORTING
                DATE_INTERNAL = SY-DATUM
           IMPORTING
                DATE_EXTERNAL = W_DATUM.
    ENDFORM.                               " CONVERT_DATE
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = W_LIST_TOP_OF_PAGE.
    ENDFORM.                               "TOP_OF_PAGE
    FORM STATUS_CHECK USING OBJNR
                            STATUS.
    This uses reverse logic i.e. subrc = 0 means the status being
    checked (delete / inactive) is active.
    e.g checking for I0076 and subrc = 0 means it's been flagged for
    deletion
      CALL FUNCTION 'STATUS_CHECK'
           EXPORTING
                BYPASS_BUFFER     = 'X'
                OBJNR             = OBJNR
                STATUS            = STATUS
           EXCEPTIONS
                OBJECT_NOT_FOUND  = 1
                STATUS_NOT_ACTIVE = 2
                OTHERS            = 3.
    ENDFORM.                               " STATUS_CHECK
    **********FORM ROUTINES (END)*************************************
    The other thing to note is that below I include a FORM to call a custom
    status (toolbar). I define this in the repositry browser by copying the
    STANDARD status from another ALV report, but you do not need to do this
    unless you want to add some more buttons to the standard toolbar. I now do
    this as a matter of course, as my users tend to want extra buttons e.g.
    'REFRESH'.
    How to add an extra button:-
    Create a new status using the repository browser by copying an existing
    one from an ALV program. Call it something like ZSTANDARD. Then change it by
    adding a new button to the toolbar - give it an icon and a four digit name
    like '&TMP' so the program knows what button the user has pressed.
    (ii) Within your program include a FORM called something like SET_PF_STATUS
    as in my example program below. Make sure the name of this FORM is included
    in the call to the ALV function module, again as in the example below.
    (iii) In the USER_COMMAND form, insert code to deal with the user pressing
    the new button e.g.
    Example of how to deal with users pressing new buttons
    *******Process Call Back Events (Begin)**************************
    FORM user_command USING ucomm LIKE sy-ucomm                        
                           selfield TYPE slis_selfield.                
    CASE ucomm.                                                        
    WHEN '&IC1'.                                                       
    READ TABLE irepo INDEX selfield-tabindex.                          
    CHECK sy-subrc = 0.                                                
    CASE selfield-sel_tab_field.                                       
    WHEN 'IREPO-VBELN'.
         SET PARAMETER ID 'VL' FIELD irepo-vbeln.                      
         CALL TRANSACTION 'VL03' AND SKIP FIRST SCREEN. "Outbound       
    WHEN '&TMP'.                                                       
    We are going to refresh the display so tell the ALV this        
          selfield-refresh = 'X'.                                       
    Isn't that clever!                                              
          PERFORM refresh.  "Subroutine to refresh the screen (for example)
    ENDCASE.                                                            
    ENDFORM.                                                            
    ********Process Call Back Events (End) ****************************
    THANKS
    MRUTYUN

  • How to deactivate the standard toolbar 'print' button

    Dear Expert,
    I want to deactivate the standard toolbar print's button in the smartform print preview screen.
    Could you explain and give me some sample code ?  Thanks !

    For details of how to restore it, see the [[menu bar is missing]] article.

  • How to make Javascript access standard JSF component

    Hello all,
    I'm in need of a proper javascript code that access standard jsf component.
    Like we do for html tags;
    if( el.tagName.toLowerCase() != 'select')
    I need to do the same thing for a jsf tag i.e; <h:selectOneMenu>. How to make javascript access <h:selectOneMenu> like it does with <select> tag ? Please let me know asap. Extremely sorry if the question is kind of stupid....cause I'm a beginner for JSF environment.
    Any sort of help, suggestion or advice would highly be appreciated.
    Thanks in advance.

    Ummmm, I may be off the beaten path, but by the time your javascript is called the h:selectOneMenu would be a select tag within the dom. You should be able to reference that tag as you normally would.

  • How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    Hi,
    Thanks for the suggestion. I've been playing around with some of the classes of the java.net package and java.io
    Using the URL class i can get the content of the data from a STATIC page and output that response to file so that is does not display to the client broswer.
    But this only works if the URL i give points to a static html page.
    So the problem i'm getting is if i'm righting in arguments in the URL, this means that server needs to process the arguments i give and its sends back a dynamic result. Because its dynamic the URL class can not handle this and throws me an exception everytime :(
    Have u ever tried to do some things like this?
    Rahul

  • How to access Lync 2013 standard database?

    Just trying to figure out how to access the SQL express database that gets installed during the Lync install. Is there a default SA password or group that i can put myself in? When i installed all the databases were thrown all over the different drives.
    I want to clean that up. 
    Thanks!

    Three database instances are created with Standard edition Lync.  Check out RTC, RTCLocal, and LyncLocal.  Everything you need should be in there.  Make sure you run as admin when accessing these databases if you're attempting to access
    them from the Front End itself.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • How to restore the Standard Toolbar,that I deleted by mistake?

    I was trying to remove some toolbars, by accident I removed the standard toolbar(view,edit,etc) I can not bring it back, what can I do?
    Thanks.

    For details of how to restore it, see the [[menu bar is missing]] article.

  • I've just downloaded the add-on - Quick Locale Switcher but don't know how to access it because there doesn't appear to be a button for it on the Firefox toolbar?

    I've just downloaded the add-on - Quick Locale Switcher but don't know how to access it because there doesn't appear to be a button for it on the Firefox toolbar?

    With any extension, look at the add-on page for that item in Mozilla Add-ons: https://addons.mozilla.org/en-US/firefox/<br />
    *Answers can usually be found there: https://addons.mozilla.org/en-US/firefox/addon/1333/<br />
    *Also the developer's home page for the extension (the link is on the above page): http://www.captaincaveman.nl/firefox-extensions-quick-locale-switcher.aspx<br />
    *Also see if there is a forum on the developer's home page (there is for this one): http://forum.captaincaveman.nl/default.aspx?g=topics&f=12

  • How to handle events on standard toolbar

    hi, the following code i worte is to load a form and fill data from db table ..but i'm getting only one record and the buttons on standard toolbar like next, previous, first and last are not enabled and not working...what should i do? plz give me the code....
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load       
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            Dim SBO_Application As SAPbouiCOM.Application
            Dim oDICompany As SAPbobsCOM.Company
            Dim ret As Long
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            sConnectionString = Command()
            SboGuiApi.Connect(sConnectionString)
            SBO_Application = SboGuiApi.GetApplication
            oDICompany = New SAPbobsCOM.Company
            Dim sCookie As String
            sCookie = oDICompany.GetContextCookie()
            Dim conStr As String
            conStr = SBO_Application.Company.GetConnectionContext(sCookie)
            ret = oDICompany.SetSboLoginContext(conStr)
            If Not ret = 0 Then
                Exit Sub 'the operation has failed.           
            End If
            ret = oDICompany.Connect()
            If ret <> 0 Then
                SBO_Application.MessageBox("Failed")
            Else
                SBO_Application.MessageBox("Connected to Database")
            End If
            ' loading(Form)
            Dim oForm As SAPbouiCOM.Form
            Dim creationPackage As SAPbouiCOM.FormCreationParams
            Dim oxmldoc As New Xml.XmlDocument 'u2026when using .netu2019s system.xml
            'create the formcreationparams object
            creationPackage = SBO_Application.CreateObject( _
             SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            'please note: these parameters override corresponding data in the xml
            creationPackage.UniqueID = "Sales 111"
            creationPackage.FormType = "Sales Order"
            creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Sizable
            'just a sample for an xml string describing a formu2026 same as used for loadbatchactions
            oxmldoc.Load("c:program filessapsap business oneSales Order.srf")
            creationPackage.XmlData = oxmldoc.InnerXml
            'add the form to the sbo application
            oForm = SBO_Application.Forms.AddEx(creationPackage)
            'set the form title and set it visible!
            oForm.Visible = True
            ''''''''''''''''''''''''''''''Data Binding
            '''''''''''binding data from DBDataSource to form items
            Dim oDBDataSource As SAPbouiCOM.DBDataSource
            Dim oItem As SAPbouiCOM.Item
            Dim oEdit As SAPbouiCOM.EditText
            '''''1st edit box
            oItem = oForm.Items.Item("4")
            oEdit = oItem.Specific
            oForm.DataSources.DBDataSources.Add("AACT")
            oEdit.DataBind.SetBound(True, "AACT", "AcctCode")
            ' getting the data sources bound to the form
            oDBDataSource = oForm.DataSources.DBDataSources.Item("AACT")
            oDBDataSource.Query()
            '''''2nd edit box
            oItem = oForm.Items.Item("5")
            oEdit = oItem.Specific
            oForm.DataSources.DBDataSources.Add("AACT")
            oEdit.DataBind.SetBound(True, "AACT", "AcctName")
            ' getting the data sources bound to the form
            oDBDataSource = oForm.DataSources.DBDataSources.Item("AACT")
            oDBDataSource.Query()
            ''''3rd edit box
            oItem = oForm.Items.Item("6")
            oEdit = oItem.Specific
            oForm.DataSources.DBDataSources.Add("AACT")
            oEdit.DataBind.SetBound(True, "AACT", "CurrTotal")
            ' getting the data sources bound to the form
            oDBDataSource = oForm.DataSources.DBDataSources.Item("AACT")
            oDBDataSource.Query()
        End Sub

    You have to enable the menus on toolbar as
    form.EnableMenu(1288, True)
                 form.EnableMenu(1289, True)
                 form.EnableMenu(1290, True)
                 form.EnableMenu(1291, True)
    If zou have the datas as UDO, use
    form.DataBrowser.BrowseBy = "code" - specifies the logic for getting next, previous,... record
    dont forget to take
    ObjectType="your udo name"
    to the form for specify from which UDO will be the datas.
    If you dont have udo, you need enable themenus in toolbar and in menuevent catch the events and create own logic for this.

  • How to access the global data in user exit.

    Hi All,
    How to access the global data in user exit.
    the question is that when we were writing a code in the FM. i need to read data from the standard program like newly created documen and this document number need to be accessed in my program.
    this document number is not imported to the FM i needed to access for frther proceed.
    Thanks in advance.

    Hi,
    See the below PDF file by Jeff Goldstein. There you can find all the details about accessing data outside of the exit.
    [SAP User Exits and the People Who Love Them|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208811b0-00b2-2910-c5ac-dd2c7c50c8e8]
    This will help you to solve your problem.
    Regards
    Karthik D
    Edited by: Karthik D on Dec 2, 2008 4:18 PM

  • How to access Payload in XI Adapter Module

    Hello,
    I have to enhance a adapter module in xi very urgently. Target is to access a node of the XML payload and retrieve the corresponding value.
    This is how my document looks like:
    <mt_test>
         <element1>
              <…> </…>
         </element1>
         <element2>
              <LOG_NO>4711 </LOG_NO>
         <element2>
    </mt_test>
    I need now access the element <LOG_NO>. This can only appear one time in the whole xml document. My code that I did so far (inside the process method) to retrieve this element is like this:
    XMLPayload xmlpayload = msg.getDocument();
         DocumentBuilderFactory factory = null;     
         factory = DocumentBuilderFactory.newInstance();
         DocumentBuilder builder = factory.newDocumentBuilder();
         Document document = builder.parse ((InputStream)xmlpayload.getInputStream());
         Element rootNode = document.getDocumentElement();
    <…and now I have no clue anymore…:-/…>
    May you give me an example how to access the node <LOG_NO> and save the corresponding value in a String variable?
    I would be really thankful.
    Greetings and thanks in advance,
    Tobias

    Hi,
    >>>found no solution with PI Standard Import to support FTP inside the Adapter Module
    why would you? file adapter supports FTP - so you don't need it
    >>>In order to use FTP library, is there any standard library available or supported by SUN.
    you can use any java ftp client available on google
    Regards,
    Michal Krawczyk

  • How to access built in dictionaries

    My MacBook Pro running OS 10.8.5 has eleven built-in dictionaries and thesauruses in the Library.
    MacBook HD > Library > Dictionary > Apple Dictionary.dictionary
    MacBook HD > Library > Dictionary > Diccionario General de la Lengua Española Vox.dictionary
    MacBook HD > Library > Dictionary > Duden Dictionary Data Set I.dictionary
    MacBook HD > Library > Dictionary > Multidictionnaire de la langue française.dictionary
    MacBook HD > Library > Dictionary > New Oxford American Dictionary.dictionary
    MacBook HD > Library > Dictionary > Oxford American Writer's Thesaurus.dictionary
    MacBook HD > Library > Dictionary > Oxford Dictionary of English.dictionary
    MacBook HD > Library > Dictionary > Oxford Thesaurus of English.dictionary
    MacBook HD > Library > Dictionary > Sanseido Super Daijirin.dictionary
    MacBook HD > Library > Dictionary > Sanseido The WISDOM English-Japanese Japanese-English Dictionary.dictionary
    MacBook HD > Library > Dictionary > The Standard Dictionary of Contemporary Chinese.dictionary
    I can find no app on my Mac for accessing or activating any of these dictionaries, not even as Services. I especially wish to open the New Oxford American Dictionary. Instead, I have been using the WordBook app, which suffices, but I would like to know how to access or open all these built-in dictionaries, too.
    If you know what to do, please let me know. Thanks!

    judahman wrote:
    I can find no app on my Mac for accessing or activating any of these dictionaries
    Unless your install is botched and it has somehow gone missing, you should find Dictionary.app in Finder > Go > Applications, and you select which dictionaries to activate in its Preferences.  The standard way to look up word is by Control clicking on a word and selecting Look Up xxxxx.
    Let us know if this does not work for you. 

  • I've installed LeechBlock and now I can't find it! Can anyone tell me where/ how to access it?

    Hi there,
    I'm new to using addons, so please forgive my ignorance. I've installed LeechBlock and now I can't see where to find it. Can anyone tell me where/ how to access it? I've looked under Addons in the Tools menu, but this just has options to install more addons.
    I had thought there'd be a button on the toolbar, or even a new toolbar, but I can't see anything...
    Thanks in advance!

    Hi, you're nearly there! When you are looking at the Add-ons you need to select Extensions on the left-hand side, and you should see it, together with your AdBlock plus. There might also be a button in the 3-bar menu - but I'm not familiar with that particular Add-on so can't be sure about that.
    Hope that helps.

  • How to get "Standard" commands Guid and Id in .Vsct file

    Hi,
    Please have a screen shot -
    I want to know the guid & id of above commands (sub menus) like Standard, Debug, Debug Location, customize etc. 
    I found guid & id for customize submenu from below line is - 
    <UsedCommand Condition="!Defined(No_CustomizeToolbarsCommand)" guid="guidVSStd97" id="cmdidCustomizeToolbars"/>
    But I want Guid and Id for "Standard" sub menu ?
    Please help.

    Hi,
    I have removed "Build" & "Customize.." sub menus as follows - 
    private readonly List<string> cmdList = new List<string> { "Build", "&Customize..." };
     try
                    CommandBar comBar = CommandBars["View"];
                    CommandBarControls mBar = comBar.Controls;
                    List<string> itemtodelete = new List<string>();
                    foreach (CommandBarControl commandBarControl in mBar)
                        string caption = commandBarControl.Caption;
                        if(caption == "&Toolbars")
                            CommandBarPopup childcontrol = commandBarControl as CommandBarPopup;
                            List<string> childList = new List<string>();
                            foreach (CommandBarControl windowChildControl in childcontrol.Controls)
                                string childname = windowChildControl.Caption;
                                if (cmdList.Contains(childname))
                                    childList.Add(childname);
                            foreach (string command in childList)
                                childcontrol.Controls[command].Delete();
                    foreach (string command in itemtodelete)
                        comBar.Controls[command].Delete();
    Basically "Toolbars" sub menu has 2 child i.e. "Build " & "Customize.." but it shows "Debug", "Debug Location" etc. I don't know when it comes and how to keep only "Standard" menu to see only
    "Standard Toolbar".
    But currently above line executes nothing under " View->Toolbars". I want to show only "View->Toolbars->Standard" option. 
    Please advice. Thanks

Maybe you are looking for