Custom XControl Container Menu?

I am experiencing some unexpected behavior with XControl custom menus.  There does not seem to be an event to handle the XControl "container" right-click menu.  This behavior can be observed in the "Simple Dual Mode Thermometer XControl?" example finder project by the following steps:
1. Drop an XControl on the front panel of a VI, the XControl "container is selected.
2. Right-click on the container selection.
How do I add to this menu?  I have tried the Pane Shortcut menu along with all of the contained controls but none of these display in the "container" menu...
CLA, CTA

Danny F wrote:
LVB,
I'm trying to get a better idea of your question. Do you need to modify the menu that normally pops up for right clicks, but now for a XControl container? Or are you trying to catch the event of right clicking on a XControl?
Regards,
Danny F
I want to modify the menu that normally pops up for right clicks.  This is usually done in the Shortcut Menu Activation event.
I am using the phrase "container" referring to the selection that occurs when an XControl is dropped onto the front panel.
Please see the video at http://http://screencast.com/t/fb3DdGu1ZWQ5
Notice how the "Display Temperature..." menu item is not displayed after the XControl is dropped onto the front panel.  I have also added the "Pane: Shortcut Menu Activation" event and this is not triggered upon right-click of the XControl "container".
CLA, CTA

Similar Messages

  • Re: F110 Customer YYYYYY contained in proposal mm/dd/yyyy ID and no editing

    Hi,
    We had a payment run and all went fine with a proposal error "F110 Customer xxxxxx contained in proposal mm/dd/yyyy ID ; no editing" The next payment run for this customer xxxxxx items are not picked up for clearing. I have deleted first payment proposal as the payment run is already happened and I found is one vendor which is still laying in table RUGUS. Could you please let us have how to remove this entry from table.
    With regards,
    V.Krishnamoorthy

    Hi,
    I understood. It isn´t looking right. I´ve a idea: Create another payment run with that one run date and identification (Same of REGUS) using same parameters specially vendor account. If it works, enter In additional log only one document number to be paid (and reversed after) and execute Proposal Run an Payment Run.
    Check your old payment run and table REGUS update.
    Let me know if it works.
    Regards

  • Add Custom Right click menu on editable AdvancedDataGrid

    Hi,
    I have an AdvancedDataGrid whose editable property is set to true and selectionmode is multipleCells.
    Is it possible to display custom right click menu when i right click on any cell? Am getting only the
    default menu items (Cut, Copy, Paste, Select All). Am using ContextMenu and ContextMenuItem class
    for creating the custom right click menu. The same code is working in Flex and not in AIR. Do we have
    to use NativeMenu in Adobe AIR? Please help. Attaching sample of my code.
    <mx:Script>
    <![CDATA[
    [Bindable] 
    private var cMenu:ContextMenu; 
    public function createContextMenu():void {
              cMenu =
    new ContextMenu();     cMenu.hideBuiltInItems();
         cMenu.addEventListener(ContextMenuEvent.MENU_SELECT, contextMenu_menuSelect);
         var cMenuItemCopy:ContextMenuItem = new ContextMenuItem("Copy Data");     cMenuItemCopy.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, contextMenuItemSelect_Copy);
         var cMenuItemPaste:ContextMenuItem = new ContextMenuItem("Paste Data");     cMenuItemPaste.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, contextMenuItemSelect_Paste);
         cMenu.customItems.push(cMenuItemCopy);     cMenu.customItems.push(cMenuItemPaste);
    this.contextMenu = cMenu;    
    private  
    function contextMenu_menuSelect(event:ContextMenuEvent):void { }
    private function contextMenuItemSelect_Copy(event:ContextMenuEvent):void {
         copy(event);
     private function contextMenuItemSelect_Paste(event:ContextMenuEvent):void {
         paste(event);
    ]]>
    </mx:Script><mx:AdvancedDataGrid  width="100%" height="72%" id="dProvider" creationComplete="init()"
          editable="true" itemEditBeginning="checkIfAllowed(event)" itemEditEnd="onEditEnd(event)"
          selectionMode="multipleCells" itemRenderer="renderer.ColorForDashBoard" contextMenu="{cMenu}"/ >

    I have same issue too. Can any one help
    Thanks

  • Custom Single Container not showing up in the Admin console

    I developed a custom single container and deployed the java files and xml's successfully.
    But the container doesnt show up in the admin console as a container channel.
    I am not able to add and delete new channels into this container .Can anyone throw light on this issue..
    raj

    I'm seeing the same thing as Simon, I changed the iOS device name in both places on an iOS device and the name in the Intune console is still "iPhone" which is really unhelpful as I'm sure you can imagine.  Is there some other place
    that we should be going to rename devices so they are more easily identifiable in the Intune console?
    Thanks!

  • F.27(Statement should be emailed if customer master contains email address)

    Hi All,
    I am working for the tcode f.27. A standard form F140_ACC_STAT_01 is assigned to tcode. Here my requirement is i need to do some changes in the form and output should be in pdf format and statement should be emailed if customer master contains email address.
    Can any body please help me how to send the email if the customer master contains email address.
    Please reply.
    Thanks,
    Nagendra

    Hi Nagendra
    change the customer email address on home and bussiness email field first and then make following changes to function module 'Z_CORR_PROCESS_00002310' or whatever name you  have got , this is working for us, let me know if y ou have any problem, You might have to tweak a code a bit , here we are decide whether to send customer statements to two email or not based on customer group selection
    data: w_output_type(10).  "Output type
       data: w_kunnr like i_kna1-kunnr.
       data: w_ktokd like i_kna1-ktokd.
       data: l_addressdtls type zaddressdtls.
       data: l_atype(1).  " Address type
    DATA: w_mailtxt TYPE finaa-namep VALUE 'ZCITY_STATEMENT_MAIL_BODY'.
    * Variables are imported - set in ZFKORD10_STUD
    * Import variable w_output_type from memory
       clear: w_output_type.
       IMPORT w_output_type FROM MEMORY ID 'ZOUTPUT_TYPE'.
       move 'B' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
          c_finaa-namep = w_mailtxt.
    * Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
       endif.
    if w_ktokd = 'stud'.
        move 'H' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
         c_finaa-namep = w_mailtxt.
      "Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
    endif.
    endif.

  • Adding Inventory functionality to a custom Order Management Menu

    We have custom menus set up to limit access for users. We currently have a user that needs the 'Move Order' functionality from the Inventory module. This user does not have access to any inventory functionality. I would like to add the 'Move Order' submenu to a custom order management menu she does have access to. Would this work as anticiipated or would this introduce issues in one or both modules? Thanks.

    Hi,
    There should be no issue if you add the proper submenu. You may also need to add some functions which could be relevant to this submenu for accessing it properly from the custom responsibility.
    I would suggest you try this on test instance first, then move it to your production environment.
    Regards,
    Hussein

  • Customer defined Context Menu in WD ALV (ABAP)

    Hello,
    is it possible programming a customer defined context menu for a Web Dynpro ALV (in ABAP)?
    The functionality should be as following:
    Open Context menu with right mouse click, select something like "display details" and then detail data shall be displayed under the ALV.
    Exists a documentation for that?
    Thanks and regards,
    Josephine

    When you are defining your content attribute at the controller do not try to bring all the value attributes rather  provide the dictionary structure and make sure that cordinality is 0...n.
    Then as and when you change the dictionary structure you would be able to view the columns corresponding to that.
    Make sure that your select stmt is modified accordingly when you are binding it to the context.
    Cheers
    ~ Kumar

  • Custom Indirection Container throwing exception in constructor

    Hi I've following the how-to and implemented my own custom indirection container. However, when reading an object from the database I'm getting the following exception. I'm guessing that it could be related to having null references stored as 0 in id columns. Any help would be greatly appreciated.
    Thanks,
    Jon
    Exception thrown in main Exception [TOPLINK-152] (OracleAS TopLink - 10g (9.0.4.8) (Build 050712)):
    oracle.toplink.exceptions.DescriptorException
    Exception Description: The operation [buildContainer constructor (null) Failed: java.lang.NullPointe
    rException] is invalid for this indirection policy [oracle.toplink.internal.indirection.ContainerInd
    irectionPolicy@cc0e01].
    Mapping: oracle.toplink.mappings.OneToOneMapping[ryFromMail]
    Descriptor: Descriptor(com.peoplesoft.crm.omk.design.PsRyedocVar --> [DatabaseTable(PS_RYEDOC_VAR)])
    Local Exception Stack:
    Exception [TOPLINK-152] (OracleAS TopLink - 10g (9.0.4.8) (Build 050712)): oracle.toplink.exceptions
    .DescriptorException
    Exception Description: The operation [buildContainer constructor (null) Failed: java.lang.NullPointe
    rException] is invalid for this indirection policy [oracle.toplink.internal.indirection.ContainerInd
    irectionPolicy@cc0e01].
    Mapping: oracle.toplink.mappings.OneToOneMapping[ryFromMail]
    Descriptor: Descriptor(com.peoplesoft.crm.omk.design.PsRyedocVar --> [DatabaseTable(PS_RYEDOC_VAR)])
    at oracle.toplink.exceptions.DescriptorException.invalidIndirectionPolicyOperation(Descripto
    rException.java:669)
    at oracle.toplink.internal.indirection.ContainerIndirectionPolicy.buildContainer(ContainerIn
    directionPolicy.java:62)
    at oracle.toplink.internal.indirection.ContainerIndirectionPolicy.valueFromQuery(ContainerIn
    directionPolicy.java:254)
    at oracle.toplink.mappings.ForeignReferenceMapping.valueFromRow(ForeignReferenceMapping.java
    :898)
    at oracle.toplink.mappings.OneToOneMapping.valueFromRow(OneToOneMapping.java:1302)
    at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:876)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder
    .java:164)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:322)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:
    242)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:368)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:510)
    at oracle.toplink.queryframework.ReadQuery.execute(ReadQuery.java:125)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1962)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1086)
    at oracle.toplink.internal.indirection.NoIndirectionPolicy.valueFromQuery(NoIndirectionPolic
    y.java:254)
    at oracle.toplink.mappings.ForeignReferenceMapping.valueFromRow(ForeignReferenceMapping.java
    :898)
    at oracle.toplink.mappings.OneToOneMapping.valueFromRow(OneToOneMapping.java:1302)
    at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:876)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder
    .java:164)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:322)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:
    242)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:368)

    Clients of your class might not like you throwing
    exceptions from the ctor. If they're checked
    exceptions it'll mean try/catch blocks. If there are
    LOTS of checked exceptions that'll mean lots of catch
    blocks. Could get messy fast. You could catch in the
    ctor and wrap in a subclass of
    java.lang.RuntimeException. Those are unchecked, like
    java.lang.IllegalArgumentException.I would strongly advise against making your checked exceptions unchecked just so that the caller's code will compile without try/catch blocks. Either way--checked or unchecked--if I do Foo foo = new Foo();
    foo.doStuff(); I won't get to doStuff() if the ctor threw an exception.
    You'd throw unchecked exceptions in those cases where it's appropriate--e.g., the caller passed you invalid args (bad code on the caller's part, appropriated for unchecked exception), or the VM couldn't get enough memory to create your object (probably not something the caller can do anything about, so, again, appropriate for unchecked).
    But if, for example, he's passing you database login parameters that an end user provided, and the password is wrong or the host is unreachable, then you'd want to throw a checked exception, because it's not bad code on the caller's part, and there might be something he can do to recover.
    Note that the example of the incorrect password above is quite different from the "invalid args" example in the previous paragraph. Your method would throw IllegalArgumentException if the caller passed args that violate your method's precondition--e..g. lie outside some range of numbers. That is, it's a value that your method simply can't use. A bad password for a db login, on the other hand, is legal as far as your method is concerned, it just failed authentication in the db.
    @%: I know you're aware of the proper use of checked/unchecked exceptions, but the way you worded you post kind of sounded like you were saying, "just use unchecked if you find the caller has too many try statements."
    &para;

  • I can't find the fox for the custom personas option menu.

    I want to wear my own custom persona for my firefox browser, nut I can't find the fox they are talking about. Quote:
    "Option 1: Test on Your Own Computer
    Within the Personas menu in the bottom left of the browser's status bar, you can enable an "offline" Persona on your own personal computer by enabling a setting within Preferences. In doing this, you can test your Personas before submitting them to the online catalog.
    Follow these four steps to get the Custom Personas option up and running in your browser:
    1. If you have Personas installed, click on the little fox on the bottom left of your computer screen and click on "Preferences"
    2. Ensure the box "Show Custom Persona in Menu" is checked and close the box.
    3. Click on the little fox again. Mouse over "Custom" in the menu and to the right find and click "Edit"
    4. Build your Persona using the upload fields and additional settings." I can't find the fox. I have tried options and prefrences, but neither work. HELP!

    Loaded Personas Plus on two computers. Ran fine on one but not the other... the difference was that I had the Black Sheep extension on the other PC. After disabling Black Sheep the Personas Plus menu fired right up in the lower left hand corner. Black Sheep has been uninstalled but I left WinPcap on the PC which was supposedly required to run Black Sheep properly!
    I tried looking up the Black Sheep extension in Fire Fox Add ons which is where I originally got it. Long one short... This was the security risk revolved around Fire Sheep. Did a search on both Fire Sheep and Black Sheep in Fire Fox add Ons and came up zero results! Anyway I hope this may help some Persona users!
    Ah, I have a link for you... [[http://techcrunch.com/2010/11/08/firesheep-blacksheep/]]

  • Custom Run-Time Menu error when named "FileMenu.​rtm"

    Discovered an interesting "feature" (error?) in LabVIEW 2009 when using custom run-time file menus.
    If you create a custom run-time menu (.rtm) and name it "FileMenu.rtm" the menu will not function correctly in executable format.
    In my LabVIEW Project, any VIs which called this custom file menu worked correctly in the project, but when I built an executable, the VIs defaulted to the default file menu.  This was not due to a corrupted .rtm file or the file not being included in the executable.  Instead after extensive debugging I determined that the name "FileMenu.rtm" is somehow reserved in LabVIEW and any executables that are built have the custom run-time menu overwritten by the default.  The tricky part of this error is that it goes unnoticed while the code is still in development and only presents itself after being built into an executable.
    Simply changing the name of the file fixed the executable run-time menu.

    Chris,
    Thanks for trying it out.  It seems that my forum post may have been a bit rushed.  
    I tried to duplicate the problem in a new project from scratch and similarly was unable to reproduce it.  I will try more soon, and in doing so perhaps reveal the true underlying problem.  I would post the original code but it is proprietary.
    I was running LabVIEW 2009 and Windows XP when the problem first presented itself.  I updated to LabVIEW 2009 SP1 as part of my debugging and the problem still presented itself.
    V/R,
    ~David

  • Adobe recommends: Customizing a Spry Menu Bar widget

    Over the next week, we are going to be publicizing some high-value content from adobe.com and other community sites. We have been tracking what's been most important to our users, and feel that getting this content out to the larger community will go a long way toward helping people tackle some of their most pressing challenges.
    Our second recommendation is a piece by David Powers:
    Customizing a Spry Menu Bar widget
    The tutorial takes you through some of the most common styling tasks for the difficult-to-style Spry Menu Bar widget in Dreamweaver.
    Give it a spin and let us know what you think!
    Previous recommendation threads:
    Use Dreamweaver CS 5.5 to package your web application for iOS and Android devices

    Customizing a Spry Menu Bar widget
    The tutorial takes you through some of the most common styling tasks for the difficult-to-style Spry Menu Bar widget in Dreamweaver.
    Why is such an important article posted on David's private website instead of on Adobe's own website?  What is the guarantee that the article will remain on David's website for some years to come!  Such an important article should remain online for at least 5 years before it is deleted to create room for new articles.

  • Problems with executing customized Run-Time menu from a sub-vi imported from the main vi.

    I am having trouble executing Run-Time menu from the sub-vi.
    Currently my main vi program, which is the first thing that I open up to acquire data from different sources (i.e. dll’s, scanners etc.) opens up a number of sub-vi’s.
    I have created several sub-vi’s, which are opened from the main vi’s customized Run-Time menu that I have created (i.e. dsp file). I am using the open panel.vi to open other sub-vi’s. I don’t have any problems opening any number of sub-vi’s through the main vi’s menu.
    I would also like to have the option to open other sub-vi’s from any sub-vi’s menu. I succeeded in exporting the Run-Time m
    enu from the main vi to the sub-vi using the property node properties however nothing happens (I hear a beeping sound) when I click on the sub-vi’s menu. I don’t know what I am doing wrong. I would really appreciate it if someone can attach a sample code using Run-Time menus on sub-vi’s imported from the main vi.
    Thanks
    Nish

    I don't actually have any VIs like this. It might be easier to take the menu and just add it to the VI during development. Then it will always be there. It might be easier than doing this with Property Nodes.
    J.R. Allen

  • Custom Run Time Menu (.rtm) for a tree control doesn't appear in LV executable

    Hello,
    I am using a custom run time menu (.rtm) for a tree control in LV.  When I right click on the control the run time menu appears in the LV development environment.  However the run-time menu does not appear when run the executable installed by the installer I created.  I tried including the .rtm file with the installer, but it did not fix the problem.
    Please let me know if any ideas.
    Thanks,
    Russell

    This is a known issue and has been reported to our R&D engineers for further investigation (CAR# 3T2E57V2). The workaround is to embed the run-time menu in the control instead of the separate .rtm file. To do this, make a minor change in the shortcut menu (for instance, add a dummy item then delete it), so that the shortcut menu editor will ask you to save the new menu. When it prompts you, choose to save it with the control instead of to file.

  • Add a view on custom view container

    Hello to everybody,
    first of all i'm not an expert on java wd.
    I'm triing to modify a stardard view of ESS package whit JDI.
    I need add a custom view .
    First of all i created my web dynpro component whit her view.
    Later i add a view container in standard view and a button. I want open this custon view after press button.
    i cannot understand the procedure for do it. I tried to read standard code but is not possible understand where is the connection beetween view container and view.
    someone can help me?
    thanks
    Alex

    First of all i created my web dynpro component whit her view
    If this separate DC, create a public part to expose so that it can be accessed from outside.
    1. choose 'Add to public part' from  'Component' context menu, give a name and click Finish.
    or if you want to access ESS view in your component, go to DC Metadata -> Used DCs -> Add Used DC -> locate ESS component, add its public part, choose dependencies: built and runtime.
    plz refer [Componentization|/docs/DOC-8661#section5 [original link is broken]]

  • F110 - Customer is contained in proposal 06/20/2014 DAFT1 no editing

    Hello SAP Experts
    I have 2 set of invoices with 2 different due dates Aug/15/2014 and AUG/20/2014
    I have executed APP for a set of due date Aug/15/2014 on and before, now the process is at proposal stage and waiting for release the payment run.
    Now I need to execute another proposal Run with Due date AUG/20/2014 without deleting earlier one
    When I execute the new proposal with due date AUG/20/2014 I am getting the below error.
    Customer 4000195 1100 is contained in proposal 08/15/2014 DAFT1; no editing       FZ           348
    My Study:-
    ·         We should not able to execute multiple proposals at the same time with one customer (Until unless it’s payment done)
    ·         When we execute the proposal customer/vendor should lock for another proposal. It will save in table REGUS
    NOTE:- I have implemented notification process to customer, when I have edit and save the proposal notification should trigger to customer email id. If I delete and re-process the proposal again the earlier invoices also include to new notification which business want to avoid duplicate notification.
    Could you any one please give your valuable inputs on this scenario?
    Thanks & Regards
    Srinivas

    Hello Srinu,
    Please delete that proposal in August 15th pyt run and please give the parameters as shown in free selection tab of F110. If you have few invoices then please mention those invoice numbers in free selection tab in F110. Please check the same in the below screenshot.
    Also please check which date you have mentioned in the next payment run date in August 15th run. Please mention the next pyt run as august 20th. Now you can do the payment proposal again in first pyt run and then it would not pick that 2nd invoice which is due on august 20th in your current pyt run.
    or
    You just block (by giving as * ) the august 20th due invoice in the current payment proposal by editing the same in APP. And the same august 20th invoice will pick in the next run automatically
    I hope it resolves your issue else revert us if you stil face any issues
    Thanks & Regards,
    Lakshmi S

Maybe you are looking for

  • Can't seem to report an app that I keep getting charged monthly for.

    First, I love Apple products. I've owned them for years. I currently own a new Macbook Pro, Apple TV, Ipad 2 and some other products. A few months ago, I downloaded a free app called KDrama. It streams korean videos and since my wife is korean, I tho

  • Unable to select a field in Datasource screen

    Hi Gurus, I am trying to change a datasource by including another field (by checking the selection field) but am unable to do it as its disabled. however the hide field can be editable and is unselected at the moment. How can i enable the selection b

  • Should I keep doing future updates to my ipod touch?

    Dear Apple Support, I've always been skeptic about this random ipod touch software updates. I don't even have count of how many times I have actually uodated my ipod. My point is that I updated my ipod today, January 19, 2012,  and for the second tim

  • 10.4.11 update has broken my mac mini core duo

    I got a rather odd error near the end of my update to .11, and went ahead and downloaded the standalone installer. I ran it, and it appeared to work properly. I later rebooted to complete, and the machine never restarted. I did a 'press power to shut

  • New version of iPhone

    Plugged my iPhone in this morning to do a software update, and then phone completely died again. I had to do a complete restore on the phone. This is the fourth time I have had to do this in the four months of owning the thing. Why would a software u