"bug report" Reminders bug

Hi, my reminders list was full, i wasn't able to create a reminder, and i deleted everything. maybe i deleted all lists, because i'm still don't able to create reminders. if I start the reminders application i cant see the "+" button. my lists is also empty and siri isn't able to create a reminder.
I think i deleted my lists?
Bug report to apple.
pictures:
http://jonathangurebo.tumblr.com/post/42856634052/siri-wasnt-able-to-create-a-re minder
http://jonathangurebo.tumblr.com/post/42856581657/reminder-lists-in-setting-empt y
http://jonathangurebo.tumblr.com/post/42856520597/reminders-lists-empty
http://jonathangurebo.tumblr.com/post/42856477810/reminders-app

FYI, Apple doesn't read these posts.  You can give them your feedback & suggestions here:
http://www.apple.com/feedback/iphone.html.

Similar Messages

  • [Bug Report] Rhythmbox missing depedency for "tdb"

    Here's the bug report:
    https://bugs.archlinux.org/task/29310
    Just tryed to install Rhythmbox and had to track down that depedency.  Just figured I'd post it here to try to give it some more attention.  Seems like a pretty easy fix that could save some users some frustration.  Go give it a vote on the bug report so the developers will see this.

    For Oracle TopLink customers can report bugs using a support request on metalink.oracle.com.
    For TopLink Essentials customer can directly file bugs in the GlassFish system.
    Doug

  • Confused after reading bug report

    Hello,
    I'm working on a desktop application which utilizes the system tray. I have an icon set with a popup menu that is triggered when the user left-clicks on the icon. Originally I was using java.awt.PopupMenu but then came across javax.swing.JPopupMenu which looks a little nicer and has support for icons. For the most part it works great. However I noticed that when the user triggers the popup menu more than once (i.e. the user left-clicks the tray icon twice or more times), a ClassCastException is thrown. After doing a bit of searching, I came across [this bug report|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6583251] and many others describing the issue I was having.
    According to the report, the evaluation is:
    Everything is clear
    we shouldn't cast mouseEvent.getSource() to Component without checkingUnfortunately this still leaves me a little confused. I mean, it does sort of let me know where the problem is happening (in the MouseListener portion of my Tray Menu where I am trying to detect the popup trigger), but I don't understand if this means that there is a way to prevent this from happening or not.
    In other words, I think the bug is coming from this block of code (correct me if I am mistaken):
    public void mouseReleased(MouseEvent e) {
              if ( e.isPopupTrigger() ) {
                   this.setLocation( e.getX(), e.getY() );
                   this.setInvoker( this );
                   this.setVisible( true );
         }Where e is apparently being casted to a Component, thus causing the error. Now, why this error occurs when the user clicks twice or more on the icon, I don't really understand. Ultimately, my question is: Is there any other way this can be written to prevent the error?
    One solution would be to simply use java.awt.PopupMenu, but I want to make sure there isn't a better solution first as JPopupMenu looks much nicer.. but if I have no other option, I will of course substitute looks for function.
    Any clarification would be greatly appreciated.
    (Apologies if this is the wrong forum. I was originally going to post this in the Swing forum, but the error actually cites AWT, yet I'm using a Swing component.. so I figured the Java Programming forum would be alright. Well, please feel free to move it if necessary.)

    ejp wrote:
    The exception stack trace tells you where the exception is being thrown from. It certainly isn't from that code, because there are no class casts of any kind there, let alone casts of e.getSource() to Component.Hi ejp, thank you for the response. My apologies.. I only assumed that e.isPopupTrigger() was throwing the exception because the bug report mentioned mouse events, and the stack trace doesn't specify where the error is within my code (e.g. the line, method, or even which class is throwing the error that I've written, though it does cite other Java classes not written by me). The e.getSource() in actionPerformed() was my next guess because that and the MouseListener are the only two places where I am detecting events. Nevertheless, I still don't believe that I am using casting, so I'm not sure how to fix this.
    Here is the stack trace:
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.awt.TrayIcon cannot be cast to java.awt.Component
         at javax.swing.plaf.basic.BasicPopupMenuUI$MouseGrabber.eventDispatched(Unknown Source)
         at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
         at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
         at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
         at java.awt.TrayIcon.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.awt.TrayIcon cannot be cast to java.awt.Component
         at javax.swing.plaf.basic.BasicPopupMenuUI$MouseGrabber.eventDispatched(Unknown Source)
         at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
         at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
         at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
         at java.awt.TrayIcon.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Below is my TrayMenu class extending JPopupMenu:
    package gui.menus;
    import gui.frames.TrayTweetFrame;
    import java.awt.HeadlessException;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.ImageIcon;
    import javax.swing.JMenuItem;
    import javax.swing.JPopupMenu;
    import util.Constants;
    public class TrayMenu extends JPopupMenu implements ActionListener, MouseListener {
         private JMenuItem exitMenuItem = null;
         private TrayTweetFrame frame = null;
         private JMenuItem minimizeMenuItem = null;
         private JMenuItem restoreMenuItem = null;
         private static final long serialVersionUID = 1L;
          * Constructor
          * @param TrayTweetFrame frame
          * @throws HeadlessException
         public TrayMenu ( TrayTweetFrame frame ) throws HeadlessException {
              this.frame = frame;
              this.initialize();
         } // end constructor
          * This method handles the events.
         public void actionPerformed( ActionEvent e ) {
              // Exit
              if ( e.getSource().equals( getExitMenuItem() ) ) {
                   getFrame().exit();
              // Restore or Minimize window
              else if ( e.getSource().equals( getRestoreMenuItem() ) ||
                        e.getSource().equals( getMinimizeMenuItem() ) ) {
                   getFrame().minimize();
         } // end method actionPerformed()
          * This method initializes and returns
          * the Exit menu item.
          * @return MenuItem exitMenuItem
         public JMenuItem getExitMenuItem() {
              if ( exitMenuItem == null ) {
                   exitMenuItem = new JMenuItem( Constants.MENU_EXIT, new ImageIcon("img/icons/exit.png" ) );
                   exitMenuItem.addActionListener( this );
              return exitMenuItem;
         } // end method getExitMenuItem
          * This method returns the frame.
          * @return frame
         public TrayTweetFrame getFrame() {
              return frame;
         } // end method getFrame
          * This method initializes and returns
          * the Minimize menu item.
          * @return MenuItem minimizeMenuItem
         public JMenuItem getMinimizeMenuItem() {
              if ( minimizeMenuItem == null ) {
                   minimizeMenuItem = new JMenuItem( Constants.MENU_MINIMIZE, new ImageIcon("img/icons/minimize.png" ) );
                   minimizeMenuItem.addActionListener( this );
              return minimizeMenuItem;
         } // end method getMinimizeMenuItem
          * This method initializes and returns
          * the Restore menu item.
          * @return MenuItem restoreMenuItem
         public JMenuItem getRestoreMenuItem() {
              if ( restoreMenuItem == null ) {
                   restoreMenuItem = new JMenuItem( Constants.MENU_RESTORE, new ImageIcon("img/icons/maximize.png" ) );
                   restoreMenuItem.addActionListener( this );
                   restoreMenuItem.setEnabled( false );
              return restoreMenuItem;
         } // end method getRestoreMenuItem
          * This method initializes the menu.
         private void initialize() {
              this.add( getMinimizeMenuItem() );          // Minimize
              this.add( getRestoreMenuItem() );          // Restore
              this.addSeparator();                    // --------
              this.add( getExitMenuItem() );               // Exit
         } // end method initialize
         public void mouseClicked(MouseEvent e) {
              // Check for double-click
              if ( e.getClickCount() == 2 ) {
                   // Minimize to the system tray
                   getFrame().minimize();
              } // end if
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public void mousePressed(MouseEvent e) {}
         public void mouseReleased(MouseEvent e) {
              if ( e.isPopupTrigger() ) {
                   this.setLocation( e.getX(), e.getY() );
                   this.setInvoker( this );
                   this.setVisible( true );
    } // end class TrayMenuAm I doing something wrong? Like I said, I'm not casting (at least explicitly..), so I'm not sure why I'm getting a java.lang.ClassCastException error. Normally I can figure out problems like these with Google, but again, when I did Google this, I came across the bug report which describes my issue exactly (but at the same time, left me wondering what the solution is).
    Again, any help is appreciated. Thanks again, ejp!

  • Bug report follow-up

    is there a way to follow-up on a bug report that i submitted?  i have the bug number, but would like to see if the report was understood, filled out properly and determine the status of the bug report.
    thanks,
    doug

    They comment on bugs if actions were taken. Otherwise - don't expect any feedback.

  • Solaris8 and 9 (possibly 7) /dev/poll driver bug report.

    Hello,
    I'd like to report a bug in the solaris 8 and 9 /dev/poll driver (poll(7d)).
    As i do not have a support account with sun or anything like that, there
    seems to be no other way to do that here (which is of course a very sad
    thing).
    Bug details:
    The /dev/poll device provides an ioctl-request (DP_ISPOLLED) for checking
    if a particular filedescriptor is currently in the set of monitored
    filedescriptors for that particular /dev/poll fd set (open /dev/poll fd).
    A quote from the documentation of the poll(7d) manual page taken from
    Solaris9:
    "DP_ISPOLLED ioctl allows you to query if a file descriptor is already in
    the monitored set represented by fd. The fd field of the pollfd structure
    indicates the file descriptor of interest. The DP_ISPOLLED ioctl returns 1
    if the file descriptor is in the set. The events field contains the
    currently polled events. The revents field contains 0. The ioctl returns 0
    if the file descriptor is not in the set. The pollfd structure pointed by
    pfd is not modified. The ioctl returns a -1 if the call fails."
    It says that when you query for an filedescriptor which is currently being
    monitored in the set, that it would return 1, and change the events field of
    the pollfd structure to the events it's currently monitoring that fd for.
    The revents field would be set to zero.
    However the only thing which actually happens here, is that FD_ISPOLLED
    returns 1 when the fd is in the set and 0 if not. When the fd is in the
    set, when FD_ISPOLLED returns 1, the events field remains unmodified, but
    the revents field gets changed.
    A small sample code to illustrate:
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <sys/devpoll.h>
    main() {
    struct pollfd a;
    int dp_fd = open("/dev/poll", O_WRONLY);
    a.fd = 0; /* stdin */
    a.events = POLLIN; /* we monitor for readability, POLLIN=1 */
    a.revents = 0;
    write(dp_fd, &a, sizeof(a));
    a.fd = 0;
    a.events = 34; /* filled in with bogus number to show malfunctioning */
    a.revents = 0;
    printf("DP_ISPOLLED returns: %d\n", ioctl(dp_fd, DP_ISPOLLED, &a));
    printf("a.fd=%d, a.events=%hd, a.revents=%hd\n", a.fd, a.events,
    a.revents);
    According to the documentation of /dev/poll and namely DP_ISPOLLED this
    program is supposed to print the following:
    DP_ISPOLLED returns: 1
    a.fd=0, a.events=1, a.revents=0
    However it prints the following:
    DP_ISPOLLED returns: 1
    a.fd=0, a.events=34, a.revents=1
    You can take any number instead of '34' and it will simply remain untouched
    after the DP_ISPOLLED ioctl-request.
    I hope it's clear now that the solaris8 and solaris9 (and probably solaris7
    with /dev/poll patch too) DP_ISPOLLED implementation is broken.
    This bug is also easily illustrated by looking at the solaris8 kernel sourcecode:
    <snippet osnet_volume/usr/src/uts/common/io/devpoll.c:dpioctl()>
    case DP_ISPOLLED:
    pollfd_t pollfd;
    polldat_t *pdp;
    if (pollfd.fd < 0) {
    mutex_exit(&pcp->pc_lock);
    break;
    pdp = pcache_lookup_fd(pcp, pollfd.fd);
    if ((pdp != NULL) && (pdp->pd_fd == pollfd.fd) &&
    (pdp->pd_fp != NULL)) {
    pollfd.revents = pdp->pd_events;
    if (copyout(&pollfd, (caddr_t)arg,
    sizeof(pollfd_t))) {
    mutex_exit(&pcp->pc_lock);
    DP_REFRELE(dpep);
    return (set_errno(EFAULT));
    *rvalp = 1;
    </snippet>
    its' clearly visible that the code writes the current monitored events to
    the revents field:
    'pollfd.revents = pdp->pd_events;'
    and that it doesnt set revents to zero.
    It's funny to see that this has been like this since Solaris8 (possibly 7). That means nobody ever used DP_ISPOLLED that way or people were simply to lazy to file a bug report.
    Another funny thing related to this. is that Hewlett-Packard did seem to know about this. Since HP-UX11i version 1.6 they also support /dev/poll. From their manual page i ll quote some sentences from their WARNING session:
    "The ioctl(DP_ISPOLLED) system call also returns its result in the revents member of the pollfd structure, in order to be compatible with the implementation of the /dev/poll driver by some other vendors."
    Hopefully this will get fixed.
    I also like to reexpress my very negative feelings towards the fact that you're not able to file bug reports when you do not have a support contract. Ridiculous.
    Thanks,
    bighawk

    Have I mentioned how much i love my playbook now Great job on os 2.0

  • Did you know that Google toolbar doesn't work properly in FF rc1? I have filed a bug report to Google about this

    The Google toolbar doesn't recognize a left mouse click when selecting a 'suggestion'. It's OK using the keyboard, however. I have filed a bug report with Google, but as this is an important extension thought you should know.

    See also:  http://forums.adobe.com/message/4662367#4662367
    -Noel

  • Bug Report: The keyboard focus doesn't automatical...

    Bug Report: When a conversation window opens, the focus doesn't automatically land in the chat entry text field.
    Since the new interface for Skype was introduced officially in Skype 7.0, there is a bug with the system/keyboard focus for a new conversation window. When Skype is in "Split Window View" and each new conversation automatically pops up in a separate window, the system/keyboard focus doesn't land in the chat entry edit field. Instead, the user has to press Shift+TAB a couple of times, to move it there and reply to the chat message received. This especially problematic for screen reader users, who rely on keyboard navigation. This mainly occurs when a new conversation is started with an incoming message, but it sometimes occurs when moving the focus out of that conversation window and later back in it again (while it is still opened).
    Steps to reproduce it:
    1. From "View" menu, activate the "Split Window View", if it is not already enabled.
    2. From Tools -> Options -> IM & SMS -> IM settings, enable "Open a new window when I receive a new message in Split Window View", if it is not already enabled.
    3. From Tools -> Options -> Advanced, activate "Enable accessible mode", if it is not already enabled.
    4. Activate the "Save" button, to save the changes.
    5. Close all windows, related to Skype. You may keep only the main window opened.
    6. Tell someone to send you a chat message. When the message arrives, Move the system focus to the conversation window in question, preferably with Alt+TAB. The system/keyboard will not land in the chat entry edit field as it did in Skype 6.21 and earlier and as it should by default, but in some unknown place in the window.
    7. Move the system/keyboard focus in the chat entry edit field and keep it there.
    8. Switch to another window, preferably from another application.
    9. With Alt+TAB, switch back to the window of the opened Skype conversation. There is a chance that the system/keyboard focus will not land in the chat entry edit field as it did in Skype 6.21 and earlier and as it should do by default, but again in some unknown place in the conversation window. But that is harder to reproduce.
    Test environment:
    - Operating system: Windows 8.1 Pro N, 64-bit, in Bulgarian with all locale settings set to "Bulgarian".
    - Skype version: 7.0.0.102 for Desktop.

    This is a known problem, but Skype have not given us an estimated time for a fix.
    Traditionally, Skype updates have been roughly monthly, so we are due a new version sometime soon. Many of us here are hoping that is has a bunch of fixes for the UI, the focus problem being one of them.
    Sean Ellis - uses Skype chat for serious work
    Click here to read my blog post on Skype 7 and basic principles of GUI design

  • Bug report: Naming a Bin after creating it with drag'n'drop

    There seems to be a small bug when giving a newly created bin a name after creating it by drag'n'drop of several clips onto the "New Bin" icon. 
    To reproduce:
    Select some clips in your project browser
    Drag them onto the New Bin button
    A new bin is created with the clips in it
    - the bin name for it appears to be selected, and editable - just as if you had created a new empty bin by clicking the New Bin button
    - type in a new name - it accepts the name fine, now press enter.
    - your new name disappears, and *now* you are really in the mode to edit the bin name
    - type your name again, and it works.
    Work around:
    When creating new bins by using drag'n'drop of clips onto the New Bin button, first press enter once to enter into the proper edit mode before giving the bin a new name.
    (is there a better place to file bug reports?)
    Version 6.0.1 (014 (MC: 264587))
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          4
      L2 Cache (per core):          256 KB
      L3 Cache:          8 MB
      Memory:          8 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MP51.007F.B03
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
    OS X 10.6.8

    Er, just answered my question about bug reports by reading the "read this before posting" link above
    But I'll leave this here for the work-around in case anyone else needs it.

  • Report a bug, if this problem is not solved, p2p of rtmfp will not be of much use

    Recently, we have several clients on a p2p application, but we use the development version to test, two-way voice and video connection is not successful, several customers of the network environment is as follows:
    First of all, there is no firewall;
    These networks have in common is:
    After an optical access, the subnet with a lot of routers, one by one, and some series, some parallel, some in series and then parallel, and some in parallel then in series, in short, they can be online, and then not the same segment of the computer, p2p connection is not successful, and other computer connection is not successful, and some also use the vpn.
    Analogy: 192.168.5.10 and 192.168.10.10 to connect not, 192.168.5.10 and 192.168.5.11 is ok, is 192.168.5.10 may be outside the network of other computers can connect to, but 192.168.10.10 possible and other computers outside the network connections are not.
    Hope you solve this problem as soon as possible, because rtmfp too expensive, otherwise p2p applications, are generally large companies (schools, government) affordable, and their networks are very complex, they do not take, you will no client .
    My English is not very good, google translation
    I gave you a bug report so long, how did not care for me ah;
    This forum nobody, or you did not test this bug, you do not have time to correct this bug;
    Either we modify not the flash player platform to the bottom of things, I will not give you advice.
    In fact, standing on a technical point of view to think that I have is to use a socket network communication can be OK, network barrier, it is not.
    But would like the user's perspective, I can be normal to the Internet, other p2p communications software, I can, on this thing, impossible, it is this software not work, so that this bug is that we must solve the .
    I am very concerned about this issue every day and came to see nobody replies, I think this problem, I think, to solve this problem, you can proceed in two ways:
    1.dns
    I think it may be able to solve this problem, dynamic dns,
    The idea is: to allow users to connect to the server, the user computer first upd listener (that is, iis services), then farid + domain to form a secondary domain name server dynamically to resolve the domain name to the user's computer, in a timely manner to refresh dns.
    In this way, the user's computer, there is a fixed identity.
    2 gateway
    From users within the LAN to solve this problem, it can only proceed from the gateway.
    For example, to use arp and other means to get to the router, where each segment ip then ip, similar to the route command to specify more than one gateway to the user's computer may be able to solve this problem.
    In theory, these two methods may be feasible.
    We also expect a new solution, I do not know Daoxing not
    Speak before this program, take a look at our test for RTMFP p2p network topology, and the test results (explain, test, do not open the firewall and router are not set up static routing).
    Computer A, computer B - "router A -" server S
    The above NetConnection.Connect.Success 95% NetStream.Connect.Success 5% NetStream.Connect.Fail
    Computer A - "Router A - servers S" - routers B - Computer B
    Above, NetConnection.Connect.Success, NetStream.Connect.Success
    Computer A - "Router A - servers S" - router B - routers C - Computer B
    Above, NetConnection.Connect.Success, 50% NetStream.Connect.Success 50% NetStream.Connect.Fail
    (Computer A - Router A, computer B) - router B - server S
    Above NetConnection.Connect.Success, 100% NetStream.Connect.Fail
    Computer A - "Router A -" router B - server S "- Router C" - router D "- computer B
    Above NetConnection.Connect.Success, 100% NetStream.Connect.Fail
    Computer A - "Router A -" Router B - "Router C -" server S "- Router D" - Router E "- computer B
    Above NetConnection.Connect.Success, 100% NetStream.Connect.Fail
    See the above test results, is not very bad, the key is FMS4.5 sell 450,000 RMB in China, their own software does not do a good job, but also to sell such a high price in China, a man named QQ. The above test environment, all 100% NetConnection.Connect.Success 100% NetStream.Connect.Success, free, QQ has more than 100 million users, QQ companies rely on advertising to make money game.
    Seems to digress, huh, huh.
    The test results, 100% NetConnection.Connect.Success, and NetStream.Connect.Fail the main reason is because the route connected in series or more than two or two and then caused.
    From a technical perspective, as a packet travels through a number of the NAT router default all packets can be out, new packets can not be into the second layer of the router caused.
    Find the reason, we think of a countermeasure to solve this problem from the software itself.
    The last case of the above test environment, for example:
    When computer A and server S NetConnection.Connect.Success computer B with the server the S NetConnection.Connect.Success, computer A to Router D sends an upd packets, not because the router can only broadcast the data packet to computer B, so 100 % NetStream.Connect.Fail.
    The 100% NetConnection.Connect.Success, if we can NetStream.Connect, and NetConnection.Connect connected together, is not can be 100% NetStream.Connect.Success?
    In other words, no matter what circumstances, computer A and computer B can and server S connection is successful, the other way round, that is, the server S and the Computer A or Computer B can connect.
    We can not let the computer A or computer B, pretending to server S (In theory, called NAT, technically speaking, is to modify the source ip of the packet header and source Mac server S, and parity), the router not in the NAT, and other communications.

    Hi Mr. Wog,
    My guess is that once you see an estimate for replacement for hundreds of dollars, those scratches won't look too bad anymore. There are products to cover the outer casing, and some people put stickers on, or even paint (I don't recommend either, but ymmv). Good luck.

  • Bug report: 3.2; DAC; GridControl; Navigation - Invalid reaction to mouse drag

    Hi,
    This is a bug report, I think.
    I have a one-column GridControl with mandatory column. Normally, DAC framework prohibits from navigation out of empty field and emits one of those DAC-1002 or DAC-603 errors. The only exception I noticed was a double-click on another row. In this case navigation allowed but an error is still produced.
    Today I was playing with this GridControl and discovered that I can drag the yellow frame across rows. And here comes a bug - GridControl doesn't change the current row on InfoBus according to current selection marked by yellow frame.
    In my case it brings the following problem: if the cursor is placed on the new empty row, user drags the cursor to another row and then tries to use any other navigation means except dragging, he gets a navigation error. DAC framework still thinks that the current row is the empty one and produces an error telling that the attribute cannot be empty.
    Dev Team, any comments?
    Regards,
    Vladimir

    Hmm... Nobody answers. I'll try another variation of the same question.
    DAC framework implicitly validates attributes on the base of Mandatory constraint in the Entity Object definition. Is it possible to set the level of this validation? For example, I want to conduct validation only when user navigates out of the row or the whole rowset, but not when he just leaves a field.
    Regards,
    Vladimir

  • Bug report: vpn (ipsec) interface number in snmp always change

    Hi,
    this is a bug report for RV082 hardware version 3 and 4, firmware version 1.x, 2.x and 4.x (all latest versions). I hope someone from cisco/belkin reads it.
    Summary:
    The snmp interface number of a VPN Tunnel change when the VPN tunnel disconnect and then re-connects.
    What should happend:
    The VPN Tunnel number 1, should always have the same snmp interface number. In RV082 v4, this number should always be 10. For example, the LAN, WAN1 and WAN2 always have the same snmp interface number.
    What is the problem:
    The VPN Tunnel number 1 change the snmp interface number, from 10, to 11, to 12, etc.
    How to reproduce:
    create a VPN Tunnel using 2 RV082 or 1 RV082 and 1 RV042. Once the VPN Tunnel is connected write down the snmp interface number. A few days later, disconnect the cable of block internet access. Then restore the internet conection and write down the snmp interface number, you should note that the snmp interface number have changed.
    Tools used:
    PRTG Network Monitor
    Please take a look at the attached image, note all the "ppp" interfaces, theres only 1 VPN Tunnel (gateway-to-gateway) defined.

    Hi Tom,
    many thanks for your reply.
    I see that I have to call Tech-support, in order to report a very technical situation, explaining them this is a bug report and I want them to make a better product.
    Since I won't pay a dime for this problem to be fixed, I can only see pain in this path(calling to speak with a tech support representative).
    I also readed that Belkin has bought Linksys, so I don't know if the RV082 will remain with Cisco or will go with Belkin.
    So, my only hope is to document this bug, that is pressent inall firmware version and hardware version of the RV082 as of today.
    many thanks for your help,
    regards,
    Oliver

  • Bug Report: Shortcuts for Adjustments in 3.1

    I have verified that bug with a brand new test account (Aperture 3.1 and OS 10.6.4 with latest Pro Update):
    - Make an adjustment to an NEF-file
    - save that adjustment as a preset
    - assign a keyboard shortcut to that specific adjustment
    Switch to the next NEF-file and make your usual adjustments:
    - initiate that shortcut to apply the already saved preset/adjustment
    All of a sudden, all already applied adjustments are set back to defaults!!!!
    To sum up:
    Shortcuts are presently not useable!
    Bug Report was filed!
    Any observations???

    I got it myself. My shortcut combination contained the option key. That causes AP to replace any adjustments already made to the image. You have to use a keyboard short cut combination without the option key.
    The question is, why AP 3.1 is not smart enough to refuse such a combination??? In version 3.0.x everything worked fine!!!

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • Bug report submitted re Input Mode affected by ACR 4.2 Mac - very annoying

    Just submitted a bug report to Adobe. ACR 4.2, Photoshop 10, Tiger 10.4.10, PowerPC.
    Most users in the US and the UK may not even run across this situation.
    If you use a non US standard keyboard layout as your Input mode, causing ACR 4.2 to launch, either from Bridge, Photoshop, or the Finder, this switches the selected keyboard to the US standard. If you click the Cancel button in ACR, the keyboard reverts back to your custom keyboard layout; but if you click Open, the US standard keyboard remains set even after quitting Photoshop, ACR and Bridge.
    It took me a while to figure out what was causing me to loose my preferred keyboard layout. It didn't dawn on me ACR 4.2 was doing it. Observing a few screen shots led me to discover the cause.
    It's most annoying.

    The choices in Bridge > Preferences > Advanced > International > Keyboard are limited, and they do not allow for choosing custom keyboard layouts.
    I need the custom keyboard layouts for a variety of reasons, such as being able to type in seven languages with my most used one without switching, two Russian layouts to allow for two non-standard ways of encoding Russian fonts, etc.

  • Bug report: A keyboard layout is incorrect on the remote with Japanese keyboard

    This is a bug report for Microst Remote Desktop
    ===================================================
    ## Summary
    A keyboard layout is incorrect on the remote with Japanese keyboard
    ## Version Information, I tested
    * Client
        * Case 1
            * MacBook Pro with JIS106 Keyboard
            * Mac OS X Lion 10.7.5
            * Microsoft Remote Desktop 8.0.24308
        * Case 2
            * MacBook Pro with JIS106 Keyboard
            * Mac OS X Mavericks 10.9.1
            * Microsoft Remote Desktop 8.0.24308
    * Remote
        * Case 1
            * Windows 7 Professional Japanese
        * Case 2
            * Windows Server 2008R2 Datacenter Japanese
        * Case 3
            * Windows Server 2012R2 Datacenter Japanese
    ## Detail of bug
    When login from Mac OS X with Microsoft Remote Desktop, the keyboard layout is always incorrect on the remote.
    The client machine have a built-in keyboard of JIS 106 layout,
    and the primary language is set to Japanese.
    But on the remote, the keyboard layout is US 101.
    So a input of Shift+2 does not result " but @.
    I've seen the above behavior on the 3 remote enviornments described the above.
    This bug did not occcur with Microsoft Remote Desktop Connection Client for Mac 2.1.1, even if the system language is English and keyboard layout is Japanese.
    ## Captures
    I've took some of screen captures.
    I'm sorry for the capture includes Japanese words, so I added description in English.
    Capture 1:
    Mac OS X Keyboard Setting
    Capture 2:
    Windows Server 2012R2 Screen Keyboard
    Capture 3:
    Windows Server 2012R2 Screen Keyboard, with a additional registry key configured.

    This bug also affects the Canadian English settings.  If the client is set to Canadian English with a US keyboard the remote server is setup using a Canadian French keyboard.  Using the language selection in the toolbar you can temporarily correct
    the problem but the keyboard resets to french at the most inopportune times.  The was a problem in the earlier RDP client and was fixed so it's sad to see it reoccur in the new client.
    Lawrence

Maybe you are looking for