How to set a single tab in JTabbedPane invisible

Hello,
I want to set only a single tab invisible out of 9 tabs in JTabbedPane. I can disable the tab but not able to set invisible.
Thanking you in advance.

you may use JTabbedPane.removeTabAt(int) method as long as you don't want the tab to appear & when needed use JTabbedPane.insertTabAt(String, Icon, Component, String, int) method.
as far as i know this is only way to achieve our want. this should help you.
regards,
Afroze.

Similar Messages

  • How to set 'Material Master' tab as default in standard transaction CG54?

    Hi All
    I am having a requirement to call the transaction CG54 from a custom program. On calling the transaction, I need to put some default values to the input fields and the default tab selected should be 'Material Master'. I am able to default input fields using BDC Transaction call. Can anybody guide me how to set Material Master tab as the default tab selected?
    Thanks in advance
    Rinzy Deena Mathews

    Hi All
    Solved the issue by myself.
    Initialization of tab in transaction CG54 is based on the values in the standard table TCGSGP - EHS: Search parameter (reproduction from SET/GET memory).
    Calling of the transaction CG54, with default values and parameters can be done with the help of following standard function module:
    *-- Types
      TYPES : BEGIN OF t_obj_tab.
              INCLUDE STRUCTURE rcgapplobj.
      TYPES : END OF t_obj_tab.
      TYPES : tt_obj_tab  TYPE t_obj_tab OCCURS 20.
      TYPES: BEGIN OF t_zplm02,
               sbgvid TYPE zppr_de_sbgvid,
             END OF t_zplm02.
    *-- Internal Tables
      DATA: li_obj_tab    TYPE tt_obj_tab WITH HEADER LINE,
            li_report     LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant    LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab  TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_report_m   LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant_m  LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab_m TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_zplm02     TYPE STANDARD TABLE OF t_zplm02.
    *-- Structures
      DATA: ls_addinf     TYPE rcgaddinf,
            ls_rcgradmsel TYPE rcgradmsel,
            lw_zplm02     TYPE t_zplm02.
    *-- Variables
      DATA: lv_trtype     TYPE rcgdialctr-trtype VALUE 'D',
            lv_actype     TYPE rcgdialctr-actype VALUE 'D',
            lv_viewappl   TYPE tcgl3-repappl     VALUE 'MATMASTER',
            lv_sel_valdat TYPE rcgradmsel-valdat,
            lv_sel_langu  TYPE rcgradmsel-langu,
            lv_ucomm      TYPE syucomm,
            lw_gen        TYPE char10,
            lv_flag       TYPE esp1_boolean,
            lv_werks      TYPE werks_d,
            lv_bsbgvid    TYPE zppr_de_bsbgvid.
    *-- Parameters
      ls_addinf-aennr      = sy-datum.
      ls_addinf-valdat     = sy-datum.
      ls_rcgradmsel-sbgvid = iw_gen.
      ls_rcgradmsel-matnr  = p_matnr.
      ls_rcgradmsel-namcat = 'MATNR'.
      ls_rcgradmsel-reprefflg = abap_true.
      ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
      li_obj_tab-repappl = 'MATMASTER'.
      li_obj_tab-objectkey = p_matnr.
      APPEND li_obj_tab.
    *-- Evaluate selection screen and fill keytab
      CALL FUNCTION 'C1G0_KEYTAB_FILL_FROM_RADMSEL'
        EXPORTING
          i_radmsel             = ls_rcgradmsel
          i_valdat              = ls_addinf-valdat
          i_actype              = lv_actype
          i_flg_popup_no_param  = abap_true
        IMPORTING
          e_flg_cancel          = lv_flag
        TABLES
          i_applobj_tab         = li_obj_tab
          e_keytab_report       = li_report
          e_keytab_variant      = li_variant
          e_subid_refreport_tab = li_subid_tab
        EXCEPTIONS
          OTHERS                = 1.
    *-- Initilize Report Header Buffer
        CALL FUNCTION 'C1AP_ESTDH_BUF_INIT'
          EXPORTING
            i_aennr  = ls_addinf-aennr
            i_valdat = ls_addinf-valdat.
    *-- Parameters
        ls_addinf-aennr      = sy-datum.
        ls_addinf-valdat     = sy-datum.
        ls_rcgradmsel-sbgvid = iw_gen.
        ls_rcgradmsel-matnr  = p_matnr.
        ls_rcgradmsel-namcat = 'MATNR'.
        ls_rcgradmsel-reprefflg = abap_true.
        ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
        li_obj_tab-repappl = 'MATMASTER'.
        li_obj_tab-objectkey = p_matnr.
        APPEND li_obj_tab.
    *-- Initial report block tree of information
        CALL FUNCTION 'C1G2_ENTRY_INQUIERY'
          EXPORTING
            i_trtype              = lv_trtype
            i_actype              = lv_actype
            i_addinf              = ls_addinf
            i_viewappl            = lv_viewappl
            i_sel_valdat          = lv_sel_valdat
            i_sel_langu           = lv_sel_langu
            i_rcgradmsel          = ls_rcgradmsel
          IMPORTING
            e_okcode              = lv_ucomm
          TABLES
            i_keytab_report       = li_report
            i_keytab_variant      = li_variant
            i_subid_refreport_tab = li_subid_tab
            i_applobj_tab         = li_obj_tab.
    With Regards
    Rinzy Deena Mathews.

  • How to hide a single tab in tabcontrol

    Hi, I want to hide a single tab on a multi-tab tabcontrol based on login. If the particular bit is set, show 1st and 3rd and so on. I just gone through help files.I couldn't find any.
    Raj. 
    Solved!
    Go to Solution.

    EightBit wrote:
    How did you make the page property with "PageVis." I create a property node but then can only link to things in Pane, aka I can't find how to link to Page
    8bit, you should be aware you replied to a 4 yeaar old solved thread (Not the best way to attract attention- next time feel fre to start a new thread)
    Try this:
    A Tab is a container for "Pages" the Pages each have a "Page.visible" property.  since the pages are in the tab container you cant access there properties directly from the "Pane"
    Jeff

  • How can I draw the tab of JTabbedPane as an image?(urgent)

    I would like to draw a JTabbedPane with a tab as an image or set the its size like I want.
    Any help is appreciated.

    Hi,
    you can set size the tabs by using the tabInsets key.
    Notice also the textIconGap key.
    UIDefaults ui = UIManager.getDefaults();
    ui.put("TabbedPane.tabInsets", new javax.swing.plaf.InsetsUIResource(10,10,10,10));
    "TabbedPane.textIconGap" int
    These are the keys and values connected with TabbedPane.
    If you need further customization of the tabbed pane I would suggest building your own.
    "TabbedPane.selected", Color
    "TabbedPane.tabRunOverlay" int
    "TabbedPane.tabAreaInsets" InsetsUIResource
    "TabbedPane.shadow" ColorUIResource
    "TabbedPane.selectedTabPadInsets" InsetsUIResource
    "TabbedPane.highlight" ColorUIResource
    "TabbedPane.lightHighlight" ColorUIResource
    "TabbedPane.font" FontUIResource
    "TabbedPane.foreground" ColorUIResource
    "TabbedPane.background" ColorUIResource
    "TabbedPane.focus" ColorUIResource
    "TabbedPane.darkshadow" ColorUIResource
    "TabbedPane.contentBorderInsets" InsetsUIResource
    -Michael

  • How to set when press Tab in column matrix, then it will show a list

    Hi
    I want to my form exactly as Sales order, so when I press Tab in item No (on sales order) column it will show list of item
    So I want to create my own form with matrix, and in the first column I want to set Tab event, so when I press Tab in that column it will shown list of something from database.
    how to get an event Tab in column matrix ??
    and what object in the list of item form (on sales order) ?? matrix or grid or something else ??
    Thanks

    Hi,
    Linking a ChooseFromList to the matrix column should give you what you want. Samples of using the ChooseFromList can be found in the SDK HelpCenter and here in the SDN forum. For example:
    choosefromlist in the fields of a matrix
    Kind Regards,
    Owen
    P.S. Please note, you have posted this question in the general SAP Business One forum. Your question is more about development so I would recommend you post in the SAP Business One SDK forum rather than here.

  • How to set the new tab URL?

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    How do I set the new tab URL? When I click on a new tab, this does not open my home page URL.
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Logitech Device Detection
    *Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Provides additional functionality on Facebook. See our web site for details.
    *Shockwave Flash 10.0 r45
    *iTunes Detector Plug-in
    *4.0.50524.0
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    Middle-click the Home button instead.
    Or just install https://addons.mozilla.org/en-US/firefox/addon/777/

  • How to set a New Tab as the start page in Firefox and lock in my choice of web sites

    You may set the New Tab page Firefox shows when opening a new tab as its start page, and you can lock in the web sites you want displayed there.
    I set my browser to open a New Tab as its start page and have locked in six destinations from which to choose on my start page.
    First I open Firefox and open a new tab. Then I delete any open tabs other than this New Tab. Optionally, I can also set a second tab to open to a specific web site
    Next I go to Tools and Options (or Edit and Preferences in Linux) and select the General tab on the far left. Click on
    [Use Current Pages].
    Each time I open Firefox it will open showing me the New Tab.
    I can select from pages that I have already visited the six pages I want to have appearing on my New Tab every time. Supposing there are no pages locked in yet, and I don't want the site in the top left. I hit the X in its thumbnail's top right corner, it disappears and every other site thumbnail moves up and there is a new site appearing in the sixth slot. Note that if I have visited one page frequently, it may appear more than once, or be replaced by itself. If that happens, just keep deleting until the page you want shows up.
    If I find a site that I want to save, then there is a thumbtack in the top left corner of the thumbnail. It is black, but if I click it it turns blue, and the thumbnail is a keeper.
    This web site is in the second row, second over, but I want it to be up on the top row. Just drag and drop and the two sites exchange places. Make sure it has a blue thumbtack. The lock-down thumbtacks and delete X symbols appear in the top left and top right, respectively while the mouse is hovering over them.
    It is possible to delete a saved site, and it is possible to undo the thumbtack. Simply click the X to delete or click the blue thumbtack to unlock the site and turn the thumbtack black.
    You may choose to tack down a few sites and let the remainder float in and out, driven by your browsing history.
    Through my use of this approach, I have instant access to my club's web site, two Webmail sites, and some other often-visited places on the Web, all in one start page.
    About the only thing I really don't need there is a Google search box, for if I enter my search terms in the address bar I get the same result as if I had specifically typed in the search box.
    Some add-ons, often potentially unwanted programs (PUPs), will replace the Firefox about:newtab (address of the New Tab) with eBay, Facebook, Twitter icons among others, and a different search engine. These icons may have a nicer appearance than the default Firefox New Tab, but you may also be looking at extra, unnecessary work for the computer, especially if behind the pretty icons there is a hidden agenda.
    Personally, I would stay clear of these add-ons, and perform some scanning with an up-to-date antivirus and antimalware software.

    If this is not a pinned (App) tab then the home page should open in that tab.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to set a single cell editable in alv Webdynpro Abap

    I am trying to edit a single cell on lead selection. here the steps i did to achive this.
    1. I added a Attribute READ_ONLY  inside my node of type WDY_BOOLEAN.
    2. i am conditionally making this Attribute - READ_ONLY = 'X'.
    3. i am binding my node with new values.
    4. for ALV here is the code i have added.
    DATA :lo_cmp_usage TYPE REF TO if_wd_component_usage,
            lr_column    TYPE REF TO cl_salv_wd_column,
            lr_table_settings TYPE REF TO if_salv_wd_table_settings,
            lt_columns TYPE salv_wd_t_column_ref,
            ls_columns TYPE salv_wd_s_column_ref,
            lr_input_field TYPE REF TO cl_salv_wd_uie_input_field,
            lo_interfacecontroller TYPE REF TO iwci_salv_wd_table ,
            lv_value TYPE REF TO cl_salv_wd_config_table.
    *Taking reference of the Component Usage
      lo_cmp_usage =   wd_this->wd_cpuse_cu_alv( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
      lo_interfacecontroller =   wd_this->wd_cpifc_cu_alv( ).
      lv_value = lo_interfacecontroller->get_model( ).
      CALL METHOD lv_value->if_salv_wd_column_settings~get_columns
        RECEIVING
          value = lt_columns.
      LOOP AT lt_columns INTO ls_columns.
        lr_column = ls_columns-r_column.
        CASE ls_columns-id.
          WHEN 'USR_ACT_RT'.
            CREATE OBJECT lr_input_field
              EXPORTING
                value_fieldname = ls_columns-id.
            lr_column->set_cell_editor( value = lr_input_field ).
            lr_input_field->set_read_only_fieldname( value = 'READ_ONLY' ).
        ENDCASE.
      ENDLOOP.
      lr_table_settings ?= lv_value.
      lr_table_settings->set_read_only( abap_false ).
      lv_value->if_salv_wd_column_settings~delete_column( id = 'READ_ONLY' ).
    but instead of changing the particular cell where i have marked READ_ONLY = 'X' it is changing whole column 'USR_ACT_RT'  data as editable .
    If anybody can  please help ASAP

    Hi Tashi,
    Thanks for your reply,i have did the same way u are doing here for setting the READ_ONLY Attribute conditionally.
    here is my code for setting the read only attribute .
    IF NOT lo_nd_nd_cost_rate IS INITIAL.
        lo_nd_nd_cost_rate->get_static_attributes_table( IMPORTING table = lt_nd_cost_rate ).
      ENDIF.
      IF NOT lo_el_nd_cost_rate IS INITIAL.
    * get all declared attributes
        lo_el_nd_cost_rate->get_static_attributes(
          IMPORTING
            static_attributes = ls_nd_cost_rate_sel ).
      ENDIF.
      lv_datum = sy-datum.
      lv_month = lv_datum+4(2).
    ** @TODO handle non existant child
      LOOP AT lt_nd_cost_rate INTO ls_nd_cost_rate WHERE quarter = ls_nd_cost_rate_sel-quarter.
        IF ls_nd_cost_rate-quarter = 'Q1'.
          IF ( lv_month  EQ '01' OR lv_month  EQ '02' OR lv_month  EQ '03' ).
            ls_nd_cost_rate-read_only = 'X'.
          ELSE.
            ls_nd_cost_rate-read_only = ''.
    *   report message
            CALL METHOD lo_message_manager->report_warning
              EXPORTING
                message_text = lv_text.
          ENDIF.
        ELSEIF ls_nd_cost_rate-quarter = 'Q2'.
          IF ( lv_month  EQ '04' OR lv_month  EQ '05' OR lv_month  EQ '06' ).
            ls_nd_cost_rate-read_only = 'X'.
          ELSE.
            ls_nd_cost_rate-read_only = ''.
    *   report message
            CALL METHOD lo_message_manager->report_warning
              EXPORTING
                message_text = lv_text.
          ENDIF.
        ELSEIF ls_nd_cost_rate-quarter = 'Q3'.
          IF ( lv_month  EQ '07' OR lv_month  EQ '08' OR lv_month  EQ '09' ).
            ls_nd_cost_rate-read_only = 'X'.
          ELSE.
            ls_nd_cost_rate-read_only = ''.
    *   report message
            CALL METHOD lo_message_manager->report_warning
              EXPORTING
                message_text = lv_text.
          ENDIF.
        ELSEIF ls_nd_cost_rate-quarter = 'Q4'.
          IF ( lv_month  EQ '10' OR lv_month  EQ '11' OR lv_month  EQ '12' ).
            ls_nd_cost_rate-read_only = 'X'.
          ELSE.
            ls_nd_cost_rate-read_only = ''.
    *   report message
            CALL METHOD lo_message_manager->report_warning
              EXPORTING
                message_text = lv_text.
          ENDIF.
        ENDIF.
        MODIFY lt_nd_cost_rate FROM ls_nd_cost_rate INDEX sy-tabix TRANSPORTING read_only .
        CLEAR ls_nd_cost_rate.
      ENDLOOP.
      lo_nd_nd_cost_rate->bind_table( lt_nd_cost_rate ).
    please see in the below sceen shot the last two cells are editable in the User Actual Rate Column whlie the selected rows cell is not editable. Please revert if u have any input for same.

  • How to set default new tab behaviour

    I dare say I could have found the answer to this by trawling the web as it seems to be a problem that has been going on since the invention of tabbed browsing in firefox version 2. I just thought i'd go to the trouble of registering and re iterating it one more time to vent my frustration.
    You'd think that setting what page (if any) to use when you open a new tab would be the easiest thing in the world! - like the first thing you see when you go to settings - second only to the homepage to use when you start firefox . But no , Mozilla seem to have made this simple issue into one of the most difficult problems your average user is likely to come across!
    I cant even see why it is not just "the home page". If the homepage opens with a new window - whats the difference if its a new tab? This is a non problem that mozilla have invented! "avoidable" dosent even cover it - this has required a lot of extra coding to create this problem!
    This has probably come up a lot more recently with some new feature of AVG barging in in hijacking this setting. I found question 983923 on this site addressing this issue for that reason.
    The 'chosen solution' ? REINSTALL FIREFOX !!! (and thats with manual cleanup too)
    Unbelievable! thats only one stop short of "wipe the pc and reinstall windows" for chris's sake.
    Presumably the victim chose this because more sensible methods have failed - as they have for me.
    other "solutions" i have seen suggested while researching this insurmountable problem are :
    - Go to about:config page, search for "browser.newtab.url" change its value to "about:newtab"
    - create a "new profile" whatever that is! surely they dont mean windows profile?
    - use the addon that someone has created to fix this pointless glaring issuer that mozilla havent
    - start in safe mode to see if an extension is causing the issue.
    well I'm going to take a break now from flogging this dead horse and see if I can do something more productive with my time. This has got to be one of the stupidest problems I have encountered with a computer, and I have been working in IT (in this exact area 'user / desktop') for nearly 20 years.

    thanks for that, the "reset preferences" option returned it to displaying recent windows on a new tab, which is close enough!

  • How to Set Portal Single Sign-On to cFolder

    Hi,
    We have configured cFolder to work with SRM ABAP (D11) and Portal (DJ1)
    and it's working fine.
    SSO also configured from Portal to SRM ABAP, ECC, and BW as backend withtype UIPWD.
    But SSO to cFolder doesn't work.
    Creating a system with alias SAP_CFOLDERS in the portal doesn't help.
    I have read [cFolder Integration with SRM 7.0 in RFx; and it said that:
    If you use NetWeaver Portal, SSO setting is same manner you did for SRM. Portal -> SRM and Portal -> cFolders.
    But the login window still appear.
    Please help.
    Thank you

    Hi,
      There should be a system ticket (basis term) need to be created. Please post this question in sap netweaver forum you may get answer there .

  • Setting focus to tab i JTabbedPane

    I have a layout with a tabbed pane within a tabbed pane. I want to to be able to bring a tab to the front from one of the other tabs. I.e. if I have tabs 1 and 2 with two sub tabs in each (1.1, 1.2, 2.1 and 2.2) I want to be able to fire an event in e.g. tab 1.2 that brings tab 2.1 to the front.
    /Olle

    Just implement somethink like this
          jTabbedPane1.setSelectedIndex(2);
          jTabbedPane2.setSelectedIndex(1);You simply select the tab out of an other tab!!
    Gl
    Luca

  • How do I set multi-line tabs?

    ''locking as a dupe - http://support.mozilla.com/en-US/questions/763250''
    Please tell me how to set multi-line tabs. Having one looong line of open tabs is a serious waste of time, so certainly it must be possible in Firefox to stack 'em up . . . Right?

    http://support.mozilla.com/en-US/questions/763250

  • ADF Faces: af:menuTabs - How to set selected tab

    I cannot find any documentation on how to set the selected tab of an af:menuTabs instance.
    Please help.

    Hi,
    the method above works if you manually inserts the menu items into a menu component, but not if you declaratively bind each component to a menu model.
    Following the ADF developer's guide, I created a dynamic menu using menuTabs (Section 11.2 Using dynamic menus for navigation). But somehow I don't get a difference in appearance between the selected and unselected tabs.
    I am also confused with the explanation in the tutorial. It says "The menu model in conjuction with nodeStamp controls whether a menu item is rendered as selected. As described earlier, a menu model is created from a tree model, which contains viewId information for each node. ViewIdPropertyMenuModel, which is an instance of MenuModel, uses the viewId of a node to determine the focus rowKey. Each item in the menu model is stamped based on the current rowKey. As the user navigates and the current viewId changes, the focus path of the model also changes and a new set of items is accessed. MenuModel has a method getFocusRowKey(), which determines which page has focus, and automatically renders a node as selected if the node is on the focus path."
    Any suggestions where I should add code to change the appearance of the selected tab? I am using the default Oracle skin.
    Greetings,
    Birgit

  • How to Set Up SSO Between IBM WebSphere and SAP EP Using JAAS

    Hi
    I have read the article on SDN called "How to Set Up SSO Between IBM WebSphere and SAP EP Using JAAS", which is also the name of my posting.
    The reason why I post this is that I've tried to follow the links in the PDF to get the file WebsphereEpSsoLib.zip but I get an error 403, which tells me that the file is not there.
    Does anybody know where this file went or can somebody tell me an alternative place to get this file?
    Jacob

    Please open the associated whitepaper, and you can find the download link to the .ZIP file on page 4.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ibm/how to set up single sign-on between an ibm websphere portal and the sap enterprise portal using jaas.pdf
    Hope that works!
    Elise

  • Want single tab close x - how can this be set up?

    In versions after 30.0 the tab close x appears in every open tab. I want a single tab close x located at the right end of the tab toolbar. The about:config code to set the value = 3 no longer is accepted. What is the new way to create a single tab close x ??

    Killing the close x in each tab is only part of the solution. The rest of the solution would involve reinstating what used to be about:config where the browser tab close value = 3, which put the single close x under the app close red x on the right hand side of the window at the right end of the tab toolbar. I'll stick with version 30.0 where this was last supported until such time as the code is restored, or I'll find another browser.

Maybe you are looking for

  • Un-install Acrobat Pro 7.0 - No Install disk

    I need to uninstall Acrobat Pro 7.0 from my computer I do not have the installation disk It is not listed in control panel - add/remove programs I've tried downloading the latest version (Acrobat XI) to install the trial version... Installing Acrobat

  • Apple HK + TNT = FRUSTRATION

    Place on-line order for iPT4 on Sep5 Apple HK charged my credit card on Sep11 Delivery status checking at Apple HK web site directs me to TNT web page that shows the iPT4 pick-up from Suzhou factory on Sep11 and it also indicates that the iPT4 arrive

  • Signed up for Ps+LR. Have not received an email with my serial number yet.

    Good afternoon . I signed the package from Adobe CC photography ( photoshop ) , have received the email confirming payment but have not received the email with the serial number . I can not use photoshop . what do I do ? Help !!!

  • Can´t set up private email account on BlackBerry Curve 8520

    Hi, I have BBerry Curve 8520 and when tried to set up the email accounts (I don't have enterprise account), the only option I have is the Enterprise. I have followed the steps on  http://docs.blackberry.com/en/smartphone_users/deliverables/14928/Set_

  • How  to do invoice generate by using trigger?

    i'm doing an offline system using Java Application which will feature invoice generation. What i try to make it different is, using trigger so the system does not require the user to re-enter all the sales particular into the system again. All the sy