PopupScreen unusual behavior

I am running with a storm of BB under JDE 4.7

One area that concerns me is the behavior of the screens when alphablending participates.

I have 2 problems now I am trying to solve with PopupScreens.

First of all, I got a test application that I ran with a simple PopupScreen with a single ButtonField and I set the alpha value to 50 on the bottom. I used the call the PopupScreen itself setBackground (is derived from screen - Manager - field, and field a call to setBackground). Now with this call, the alpha is set to 50, and I see it very well in the Simulator.

Now, the PopupScreens constructor requires a new VerticalFieldManager be sent in. If I use this Manager to its setBackground function call, I see a few alpha but much less... as he is set to 200 or something.

Now there are several (lets call these areas for lack of a better term) in the PopupScreen. It is for the field of the screen itself and one for the Manager. I think what is happening here is that I put the alpha for the two "regions" and the result is that the whole 'widget' is defined on an alpha of 50, while the area inside the PopupScreen is as another area that is drawn with the same color and alpha is set to 50 too. The result is alpha to alpha, making it less transparent and I noticed that even the border has a few alpha and who is the alpha of the Manager.

So my first question is... Exceeds my correct assessment? If so, I'll need to alpha using only the PopupScreen setBackground calls... it seems to work better.

My second question is that I can't get either version of this application to run on the device itself. Now, this app has been changed from one that used a screen at the start (and it worked fine on the device), but when I changed to the PopupScreen and the PushGlobalScreen place in the UiApplication, it won't work. It gives me a message saying:

"Error at startup test: 'test' may not contain the classes in com.rim, net.rim, net.blackberry.java or javax packages.

I believe that this message is one that is normally given when proof is required. However, I don't see any warnings of certification in the Javadocs for the objects or calls I use.

Any ideas?

Here is the source code for a version... Sorry for all the commented code (I'm currently doing run :-)

/**
 * test.java    Tests various features that this utility may use.
 *
 * Copyright (C) 2009, IPPUB. All rights reserved.
 */
package com.rim.bbtools.source;

import net.rim.device.api.ui.*;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.ui.decor.*;
import net.rim.device.api.i18n.*;

/*
 * BlackBerry applications that provide a user interface
 * must extend UiApplication.
 */
public class test extends UiApplication
{
        private Manager m_mgr;

        public static void main(String[] args)
        {
                //create a new instance of the application
                //and start the application on the event thread
                test theApp = new test();
                theApp.enterEventDispatcher();
        }
        public test()
        {
                m_mgr = new VerticalFieldManager();
                //display a new screen
                pushGlobalScreen(new testScreen(m_mgr), Integer.MIN_VALUE + 1, 0);
                //pushScreen(new testScreen());
        }
}

//create a new screen that extends MainScreen, which provides
//default standard behavior for BlackBerry applications
final class testScreen extends PopupScreen  // MainScreen
{
        //private final static int TALPHAB    = 50;   // Set background of screen to almost Transparent
        //private final static int TALHPAF    = 200;  // Set background of Field to almost Opaque

        public testScreen(Manager mgr)
        {

                //invoke the PopScreen constructor
                super(mgr, Field.FOCUSABLE);
                //super();

                final Manager mymgr = mgr;

                //add a title to the screen
                //LabelField title = new LabelField("Feature test example", LabelField.ELLIPSIS
                //                | LabelField.USE_ALL_WIDTH);
                //setTitle(title);

                // Get the HELLO string from the resources file
                ResourceBundle resources = ResourceBundle.getBundle(testResource.BUNDLE_ID,
                        testResource.BUNDLE_NAME);
                String hmessage = resources.getString(testResource.HELLO);
                //add the text HELLO to the screen
                add(new RichTextField(hmessage));

                //add(new RichTextField("Hello World!"));
                // First define button handler
                FieldChangeListener bhandler = new FieldChangeListener()
                {
                    public void fieldChanged(Field field, int context)
                    {
                        // First get the UiEngine
                        //UiEngine engine = getUiEngine();    // Screen function inherited
                        //int count = engine.getScreenCount();    // How many screens present now.

                        ButtonField buttonField = (ButtonField) field;
                        if (buttonField.getLabel() == "RED")
                        {
                            Background newback = BackgroundFactory.createSolidTransparentBackground(Color.RED,50);
                            mymgr.setBackground(newback);
                            buttonField.setLabel("BLUE");
                        }
                        else
                        {
                            Background newback = BackgroundFactory.createSolidTransparentBackground(Color.BLUE,50);
                            mymgr.setBackground(newback);
                            buttonField.setLabel("RED");
                        }
                    }
                 };
                 // Define button itself to use handler above, this one called RED
                 ButtonField buttonField = new ButtonField("RED",ButtonField.CONSUME_CLICK);     // Create RED button
                 buttonField.setChangeListener(bhandler);               // Set up button handler defined above

                 add(buttonField);      // Add the button to the screen.

        }

        //override the onClose() method to display a dialog box to the user
        //with "Goodbye!" when the application is closed
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
}

Thank you

-Donald

I'm going to mark it as resolved because no one answered, and I guess that I am not mistaken, nothing makes sense. The only part that I haven't figured out is why it does not work on the device and I did more work to identify this problem and I suspect another problem (problem IDE), so I'll post a different question for this.

Thank you

Tags: BlackBerry Developers

Similar Questions

  • Unusual behavior of Popup

    Hello Experts,

    I use jdev 11.1.16

    I have a popup that displays a table. Whenever I click on a line. Pop-up is closed (unusual behavior).

    More information

    -popup is closed (unusual behavior)

    -the values are reset

    Has anyone faced this behavior of the issue, which may be reason for you the unusual behavior of popup?

    Problem occurred because he had partial trigger on a component declarative which contained Pop up.
    After having removed this partial trigger on this component, things are resolved.

    Thank you for everyone's response.

  • Unusual behavior with the debugger of the SQL Developer

    Hello everyone,

    I've recently updated to Developer SQL 3.2.10.09 and I noticed unusual behavior during debugging. I can't confirm that this behavior started because of the update, but that's just a guess at the moment. I'll explain what's going on...

    I have a package and spec (both compiled for debugging) I want to scroll. I make a point to stop where I want to put an end to the execution and everything stops as expected at this time there... or what it looks like. The performance indicator is actually the line after where the process stopped in fact. Here is an example.
    ndxEmpl           PLS_INTEGER := 1;
    ndxNewFac        PLS_INTEGER := 1;
    ndxAdid           PLS_INTEGER := 1;
    ndxStdn           PLS_INTEGER := 1;
    ndxNonComp       PLS_INTEGER := 1;
    Say I put the breakpoint on line 3 of the code above. The execution point watch line three has been highlighted to indicate that it is the next line should be run, but when I mouse over ndxNewFac in both, he line shows its value to null. Then I switch to line 4 and ndxNewFac is now list 1, but ndxAdid is null.

    It is really interesting when you arrive if statements or many transport returns in the code, because the execution point will actually bring out a blank line when execution is still a stingray above.

    I reinstalled the JDK from my office and used previous versions of SQL Developer all with the same results in the end. I also used the computers of some colleagues on the same package and their debugging behaves normally. I have not tried the debugger on an anonymous block or another package yet, but I thought I'd throw this question here. I will reply with my findings.

    Everyone has experienced identical to this behavior? I'll capture some screenshots if the scenario above is not clear.

    Published by: gort_industries on Sep 28, 2012 08:28

    Published by: gort_industries on Sep 28, 2012 10:44

    There was an old problem where the debug line numbers didn't explain correctly additional "create or replace" added to the top. I thought that this had been fixed some time ago.

  • unusual behavior of AF: Query 11.1.1.4.0

    JDeveloper 11.1.1.4.0

    Hi, I have an unusual behavior in an af:query object. I have two variables VariableClientId and VariableCan in the display of a notice criteria. When I run the form in Weblogic to test, the af: query shows the two mentioned variables, but also two fields ClientId and CAN. How to make two of these input fields disappear and show only two entries of the af:query object? I've looked everywhere and can't seem to find what motivates the additional fields.
                      <af:query id="qryId1" headerText="Search" disclosed="true"
                                value="#{bindings.SearchByCIDAndCanQuery.queryDescriptor}"
                                model="#{bindings.SearchByCIDAndCanQuery.queryModel}"
                                queryListener="#{MyBean.processQuery}"
                                queryOperationListener="#{bindings.SearchByCIDAndCanQuery.processQueryOperation}"
                                resultComponentId="::pc1:resId1"/>
    Thank you
    Troy

    Make sure that they are not in the query. Otherwise they should be required, you can change the display flag to hidden if you want to hide

  • Constant Crash logs and unusual behavior spotlight?

    Mac Book Pro (early 2011) 17 "quad i7 16 GRAMS / 500 Gb Crucial SSD MX200

    Hello

    I get constant crash messages in my console. There is a behavior unusual spotlight as well.

    It all started with a hint of delay and backup times with reading of error message "Impossible backup, please try again later"

    Spotlight is indexing for long periods of time. Research presented so I tried these possible solutions.

    1 (obvious) adding hd/external references to the list of privacy then removing to re-index... No.

    2 disable indexing with the terminal and re-activation controls... No.

    3 find 10.7.5 additional updated with the hotfix for extended projector or activity of time machine,.

    then focus on disabled,

    ran disk utility to repair permissions,.

    welcomed my backup run and assumed all was well. I thought that I re activated spotlight and the problem has been resolved, but apparently my console suggested projector has been disabled so I have reactivated the indexing and have had some problems of backup again... (continue)

    During my diagnosis, I consulted a friend who looked at my console. He mentioned disk i/o errors and I have maybe need to replace my hard drive soon - I was considering upgrading ssd anyway - so I did the installation and upgrade of RAM.

    Now, my attention is directed to my messages to the console.

    I get the minute incident reports or more. mdsworker showing an invalid address (?-?)? I don't have a lot of knowledge in regards to the console and how to read the messages, but I do not recognize the word or the fault accident. Any help is appreciated. Can't post a report if required. Thanks in advance!

    It seems too short to be a report, but perhaps a summary? A lot of these...

    30/05/16 11:02:43.316 PM ReportCrash: com.apple.message.domain: com.apple.crashreporter.writereport.crash

    com Apple.message.signature: mds

    com Apple.message.signature2: UNBUNDLED | ??? (???)

    com Apple.message.signature3: FAB1F6BC2EBB82D0BC47F031B7127505

    com Apple.message.Result: No.

    com Apple.message.summarize: YES

    Check if the MBP had the kernel panics.  If so connect and confirm it with these instructions:

    https://support.Apple.com/en-us/HT201753

    Ciao.

  • Unusual behavior with date. MinValue

    Greetings,

    I have create a function that store data includes date, it worked fine for 3 months

    But recently, he throws me a NullPointerException... will post to the bottom of the function and purpose.

    public String save_info() {}

    FacesContext facesContext = FacesContext. getCurrentInstance ();

    UIViewRoot root = facesContext. getViewRoot ();

    RichInputDate dateborn = root (RichInputDate). findComponent ("new_patient_borndate");

    view. D date1 = new view. Date1();

    String temp_born = null;

    try {}

    temp_born = d.DatetoString(dateborn. getValue()); <-when the exception occurs

    } catch (SQLException e) {}

    . System.Err println (e.getMessage());

    }

    DateFormat format = new SimpleDateFormat("dd/MM/yyyy");

    Java. util. Day parsedUtilDate = format.parse (temp_born);

    Java. util. Day parsedUtilDate = format.parse (dateborn. getValue());

    Java. sql. Day sqltDate= new java. sql. Date (parsedUtilDate. getTime());

    ........

    Returns a null value.

    }

    Where Date1 class contains:

    import java. sql. SQLException;

    import java. sql. Timestamp;

    import java.text. SimpleDateFormat;

    Oracle import. ADF. view.rich.component.rich.input. RichInputDate;

    public class {Date1

    private static final SimpleDateFormat monthformatter = new SimpleDateFormat)

    'MM');

    private static final SimpleDateFormat monthDayYearformatter = new SimpleDateFormat)

    "MMM DD yyyy");

    private static final SimpleDateFormat monthDayformatter = new SimpleDateFormat("MMM dd");

    private static final SimpleDateFormat DaymonthYearformatter = new SimpleDateFormat)

    "dd/MM/yyyy");

    private static final SimpleDateFormat Yearformatter = new SimpleDateFormat)

    "yyyy");

    public Date1() {}

    }

    public String DatetoString(object date1) throws SQLException {}

    Oracle. Houston*.domain. Date dbDate;

    Java. util. Date of . MinValue = (java. util. Date1 date);

    dbDate= new oracle. Houston*.domain. Date (new java . SQL. Timestamp (date. MinValue. getTime ())) ;   <- heres where it throws the exception

    return DaymonthYearformatter.format ((java. util. ( DbDateto date). DATEVAL ());

    }

    public String DatetoStringYear(object date1) throws SQLException {}

    Oracle. Houston*.domain. Date dbDate;

    Java. util. Date of . MinValue = (java. util. Date1 date);

    dbDateis new oracle. Houston*.domain. Date (new java . SQL. Timestamp (date. MinValue. getTime ())) ;

    return Yearformatter.format ((java. util. ( DbDateto date). DATEVAL ());

    }

    }

    The problem is, i use the exact same method for other operations, and they work fine, it throw me only NullPointerException on this i Save specific function call.

    Here is a stack trace:

    ]] Root cause of ServletException.

    javax. faces.El. EvaluationException: / /C: /Users/Philip/AppData/Roaming/JDeveloper/system11.1.2.4.39.64.36.1/o.j2ee /drs/eHealth/ViewControllerWebApp.war/hand. JSF @2864,118 action = ' #{BeanSave.save_info} ": java. lang. NullPointerException

    to org.apache. myfaces. the Trinity.component. MethodExpressionMethodBinding.invoke (MethodExpressionMethodBinding.java:51)

    to com.sun.faces.application. ActionListenerImpl. processAction (ActionListenerImpl.java:102)

    to org.apache. myfaces. the Trinity.component. UIXCommand.broadcast (UIXCommand.java:190)

    in javax. faces.component. UIViewRoot. broadcastEvents (. Java:752UIViewRoot)

    in javax. faces.component. UIViewRoot. processDecodes (. Java:928UIViewRoot)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl$ApplyRequestValuesCallback. invokeContextCallback (LifecycleImpl.java:1519)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl. _executePhase(LifecycleImpl.java:372)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl. Run (LifecycleImpl.java:202)

    to javax.faces. webapp. FacesServlet.service (FacesServlet.java:508)

    in weblogic. servlet.internal. StubSecurityHelper$ServletServiceAction.run (StubSecurityHelper.java:227)

    in weblogic. servlet.internal. StubSecurityHelper. invokeServlet (StubSecurityHelper.java:125)

    in weblogic. servlet.internal. ServletStubImpl. Run (ServletStubImpl.java:300)

    in weblogic. servlet.internal. TailFilter. doFilter (TailFilter.java:26)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. ADF. model.servlet. ADFBindingFilter. doFilter (ADFBindingFilter.java:173)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. adfinternal. view.faces. webapp.rich. RegistrationFilter. doFilter (RegistrationFilter.java:125)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl$FilterListChain. doFilter (TrinidadFilterImpl.java:468)

    at oracle. adfinternal. view.faces. activedata. AdsFilter. doFilter (AdsFilter.java:60)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl$FilterListChain. doFilter (TrinidadFilterImpl.java:468)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl. _doFilterImpl(TrinidadFilterImpl.java:293)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl. doFilter (TrinidadFilterImpl.java:199)

    to org.apache. myfaces. trinidad. webapp. TrinidadFilter. doFilter (TrinidadFilter.java:92)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    to oracle.security. jps. EE.http. JpsAbsFilter$1.run (JpsAbsFilter.java:119)

    to java.security. AccessController. doPrivileged (Native method)

    to oracle.security. jps. util. JpsSubject. doAsPrivileged (JpsSubject.java:315)

    to oracle.security. jps. ee. util. JpsPlatformUtil. runJaasMode (JpsPlatformUtil.java:442)

    to oracle.security. jps. EE.http. JpsAbsFilter. runJaasMode (JpsAbsFilter.java:103)

    to oracle.security. jps. EE.http. JpsAbsFilter. doFilter (JpsAbsFilter.java:171)

    to oracle.security. jps. EE.http. JpsFilter. doFilter (JpsFilter.java:71)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. DMS.servlet. DMSServletFilter. doFilter (DMSServletFilter.java:139)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    in weblogic. servlet.internal. RequestEventsFilter. doFilter (RequestEventsFilter.java:27)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    in weblogic. servlet.internal. WebAppServletContext$ServletInvocationAction. wrapRun (WebAppServletContext.java:3715)

    in weblogic. servlet.internal. WebAppServletContext$ServletInvocationAction.run (WebAppServletContext.java:3681)

    to following weblogic. ACL.internal. AuthenticatedSubject. doAs (AuthenticatedSubject.java:321)

    in weblogic. Security.service. SecurityManager. runAs (SecurityManager.java:120)

    in weblogic. servlet.internal. WebAppServletContext. securedExecute (WebAppServletContext.java:2277)

    in weblogic. servlet.internal. WebAppServletContext. Run (WebAppServletContext.java:2183)

    in weblogic. servlet.internal. ServletRequestImpl(ServletRequestImpl.java:1454) .run

    the work of weblogic. ExecuteThread. Run (ExecuteThread.java:209)

    the work of weblogic. ExecuteThread.run (ExecuteThread.java:178)

    Caused by: java. lang. NullPointerException

    to the view. Date1. DatetoString (Date1.java:38)

    to the view. Save.save_info (Save.Java:233)

    to sun.reflect. NativeMethodAccessorImpl.invoke0 (Native Method)

    to sun.reflect. NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39)

    to sun.reflect. DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25)

    to java. lang.reflect. Method.Invoke (Method.Java:597)

    to com.sun.el.parser. AstValue.invoke (unknown Source)

    to com.sun.el. MethodExpressionImpl.invoke (unknown Source)

    to com.sun.faces. Facelets. ElTagMethodExpression.invoke (TagMethodExpression.java:105)

    to org.apache. myfaces. the Trinity.component. MethodExpressionMethodBinding.invoke (MethodExpressionMethodBinding.java:46)

    to com.sun.faces.application. ActionListenerImpl. processAction (ActionListenerImpl.java:102)

    to org.apache. myfaces. the Trinity.component. UIXCommand.broadcast (UIXCommand.java:190)

    in javax. faces.component. UIViewRoot. broadcastEvents (. Java:752UIViewRoot)

    in javax. faces.component. UIViewRoot. processDecodes (. Java:928UIViewRoot)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl$ApplyRequestValuesCallback. invokeContextCallback (LifecycleImpl.java:1519)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl. _executePhase(LifecycleImpl.java:372)

    at oracle. adfinternal. view.faces.lifecycle. LifecycleImpl. Run (LifecycleImpl.java:202)

    to javax.faces. webapp. FacesServlet.service (FacesServlet.java:508)

    in weblogic. servlet.internal. StubSecurityHelper$ServletServiceAction.run (StubSecurityHelper.java:227)

    in weblogic. servlet.internal. StubSecurityHelper. invokeServlet (StubSecurityHelper.java:125)

    in weblogic. servlet.internal. ServletStubImpl. Run (ServletStubImpl.java:300)

    in weblogic. servlet.internal. TailFilter. doFilter (TailFilter.java:26)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. ADF. model.servlet. ADFBindingFilter. doFilter (ADFBindingFilter.java:173)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. adfinternal. view.faces. webapp.rich. RegistrationFilter. doFilter (RegistrationFilter.java:125)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl$FilterListChain. doFilter (TrinidadFilterImpl.java:468)

    at oracle. adfinternal. view.faces. activedata. AdsFilter. doFilter (AdsFilter.java:60)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl$FilterListChain. doFilter (TrinidadFilterImpl.java:468)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl. _doFilterImpl(TrinidadFilterImpl.java:293)

    to org.apache. myfaces. trinidadinternal. webapp. TrinidadFilterImpl. doFilter (TrinidadFilterImpl.java:199)

    to org.apache. myfaces. trinidad. webapp. TrinidadFilter. doFilter (TrinidadFilter.java:92)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    to oracle.security. jps. EE.http. JpsAbsFilter$1.run (JpsAbsFilter.java:119)

    to java.security. AccessController. doPrivileged (Native method)

    to oracle.security. jps. util. JpsSubject. doAsPrivileged (JpsSubject.java:315)

    to oracle.security. jps. ee. util. JpsPlatformUtil. runJaasMode (JpsPlatformUtil.java:442)

    to oracle.security. jps. EE.http. JpsAbsFilter. runJaasMode (JpsAbsFilter.java:103)

    to oracle.security. jps. EE.http. JpsAbsFilter. doFilter (JpsAbsFilter.java:171)

    to oracle.security. jps. EE.http. JpsFilter. doFilter (JpsFilter.java:71)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    at oracle. DMS.servlet. DMSServletFilter. doFilter (DMSServletFilter.java:139)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    in weblogic. servlet.internal. RequestEventsFilter. doFilter (RequestEventsFilter.java:27)

    in weblogic. servlet.internal. FilterChainImpl. doFilter (FilterChainImpl.java:56)

    in weblogic. servlet.internal. WebAppServletContext$ServletInvocationAction. wrapRun (WebAppServletContext.java:3715)

    in weblogic. servlet.internal. WebAppServletContext$ServletInvocationAction.run (WebAppServletContext.java:3681)

    to following weblogic. ACL.internal. AuthenticatedSubject. doAs (AuthenticatedSubject.java:321)

    in weblogic. Security.service. SecurityManager. runAs (SecurityManager.java:120)

    in weblogic. servlet.internal. WebAppServletContext. securedExecute (WebAppServletContext.java:2277)

    in weblogic. servlet.internal. WebAppServletContext. Run (WebAppServletContext.java:2183)

    in weblogic. servlet.internal. ServletRequestImpl(ServletRequestImpl.java:1454) .run

    the work of weblogic. ExecuteThread. Run (ExecuteThread.java:209)

    the work of weblogic. ExecuteThread.run (ExecuteThread.java:178)

    Subsystem HTTP USERID = <WLS Kernel > = SEVERITY = error = [ACTIVE] ExecuteThreadTHREAD: '17' for queue: "weblogic.kernel. By default (self-adjusting)' MSGID = BEA-101017 MACHINE = Philip-PC TXID the CONTEXTID = b4a115f7f97f3f6f = :-19c0d550:1412a86df3d: - 8000-00000000000002 c 3 TIMESTAMP = 1379401369989

    WatchAlarmType: AutomaticReset

    WatchAlarmResetPeriod: 30000


    Hope you can help me, thanks.

    Hello

    the command button that calls the method, someone set the attribute 'immediate' to 'true '? Have noticed that things happen for a reason, so there must be a change to your application at the origin of this behavior. He blames the date component. MinValue seems barking the wrong tree.

    Frank

  • My iPad is showing unusual behavior, how to recover?

    Today morning I have access to my iPad and when I started searching on Google, then it started to open new windows automatically and I passed on it, but after 30 minutes when I opened it, it was same and my many applications has also stopped working.

    Then my friend suggested me to guys to call Technical Support, I call for iPad Technical Support it is under TECHLABS24X7 technical SERVICE ("I paid them $99.99 ('payment' < payment@techlab24x7 > and when I called again, then it passed under the new name"Inc. Tech365' phone number here #844-798-3801 I paid $300.00 for 1 year of service.) ") But after 6 days my all apps stopped working and he showed some sign of Virus and asking for my password.

    < link published by host >

    Four hundred dollars? You've been seriously ripped off. Just close Safari (double click the Home button, then slide up app) and reset your iPad before reopening Safari would almost certainly set your original problem. Now your being phished. DON'T GIVE THEM YOUR PASSWORD!

    Which country are you? TECHLABS24X7 is not taken care of Apple for iPads. You should be contacting legitimate support from Apple on this topic, no not a third party operation has nothing to do with Apple. Your best bet at this point may well be to restore your iPad from a backup made before all this happened. I hope that you have a. If you live near an Apple Store, you can make an appointment at the Genius Bar for help.

  • Very unusual behavior of Satellite L750D-14R

    One of my kids has a portable Satellite L750D-14R and a couple of weeks complained that the laptop was slow. It * was * slow - it took 10 to 15 actual minutes just to load of minecraft, and then the game was unplayable because it was so slow. He already had 6 GB of RAM. To try to fix it, I reinstalled Windows 8 (when we bought, it came with windows 7 and I upgraded to 8.1 Windows), all system updates and the windows update 8.1.

    He seemed to be okay, at this point, faster. But he began to blue screen regularly, as every time it has been used. I tried to reinstall another, this time by installing Windows 8.1 directly. I made all the system updates etc and he began to blue screen. At that time, I had already spent a lot of time trying to fix it. This time, I went for the nuclear option full-on and completely formatted the disk including the removal of all partitions. There are 3 partitions, a very small recovery partition and the system partition and data. I thought I wouldn't need recovery - if there were any problems I could format and reinstall again. So I amazed all the scores and grouped into a single partition on the disk.

    The laptop is now completely unusable. With the HDD Toshiba original (freshly formatted) installed the laptop starts just directly to a blue screen that says:

    "Recovery, your PC needs to be repaired. The application or the operating system could not be loaded because a required file is missing or contains errors. File: \WINDOWS\System32\winload.exe
    Error code: 0xc000000f

    You will need to use the tools of recovery on your installation media. If you do not have the installation media contact your system administrator to the manufacturer.

    Press ENTER to try again
    Press F8 for startup parameters.

    Pressing enter or F8 is simply the screen flashes for less than a second, then it goes back to the same message again. It tries to start, it shows not the BIOS or normal startup messages, or the Toshiba logo or anything like that.

    With a drive HARD new, freshly formatted, the laptop does nothing when I turn it on - entirely black screen with a cursor flashing at the top left of the screen. It does not boot to the BIOS, there is no system messages or logos, I can't type in the location of the cursor, it is just flashing indefinitely.

    It's as if there was something on the "valorisation" partition which stops users to upgrade the HARD drive or something - any player who does not have this 'special' recovery partition do not work, thus ensuring that consumers buy a new laptop when it grinds to stop instead of the upgrade. This may sound cynical, but I saw anti-mise at material level similar solutions in the past - Compaq PC used to have special notches plastic cast on optical drives, so that readers could be used in the frame of Compaq.

    Just to put things in context, I'm not a computer expert, qualified or not, or whatever it is, * but * I was an engineer office support for a very large company for a long time, a few years ago. I have built, repaired and updated hundreds of computers over a period of about 20 years, and in all this time, I've never seen a problem like this. What I mean is, I'm not a total computer novice! Usually a full format and reinstall everything except material patches broke, and it does not feel like a broken hardware problem.

    The laptop is 1 to 2 years. I'm sure laptops should last longer than that. I really don't want it's bin again. Is there something I can do? I can recreate this special anti-mise to partition somehow level?

    With a drive HARD new, freshly formatted, the laptop does nothing when I turn it on - entirely black screen with a cursor flashing at the top left of the screen

    The cursor blinking in the upper left corner is a typical sign of HARD drive / partition problems or memory problem.
    But HARD DISK must be check at the first stage.

    According to your message, you could reinstall Win 8 on this HARD drive...

    I recommend you install Windows system once more after the HARD drive has been formatted.
    The best choice would be the use of the support of recovery Toshiba (disk) which allows you to reset the phone to factory settings, but I guess that you have not created this record in the past. Right?

    Well, if you need this disk, you can always order the middle of Toshiba Arvato serice.
    More I would recommend checking the HARD drive using some 3rd party software such as
    Drive Fitness Test (google for free download)

    As mentioned, next to the potential problem of HARD drive, the RAM might be the troublemaker...
    Then you should also consider the RAM check or replacement of RAM...

  • Unusual behavior/temperatures of CPU

    So recently (like, a day or 2 ago), I noticed something very odd.

    I use speedfan to monitor my temperature and usually when I am just browsing the internet/general use the inactive cores of 49-57 ° C. I have not changed my routine or too recently added new software.

    But then, one day, I noticed that for some reason, not only does my uses main spike place high enough (loading a GAME level) but also my temperatures were also quite high (66-70). Try to close out the process in hopes of the computer itself to cooling does not work down. He remains in the range of the middle of the 1960s, and the CPU usage seems to be quite high also.

    Did not find any abnormally strange processes running in the Task Manager, btw.

    The day of this announcement, the climate is colder than usual, and be in the range of the 1960s in this weather is warm enough. yesterday has been meteoric hot and the time went to the 70's as indicated.

    My main concern is what might be causing this peak CPU usage which, in turn, can cause all this heat?

    Or a dust inside cause processors to redouble efforts for a reason any?

    It is for this reason that I'm afraid of never play games on this system...

    EDIT: I think I found the cause: notifications pop up of the of the Overwolf cat.

    Edit2: Zero Ok, that it was probable cause... It doesn't happen as often as I uninstalled but it is still ongoing and I don't know why... Most recent increase in the CPU seemed to occur after trying to open HP Coolsense. Any ideas as to the reason behind the peaks of the random semi-permanent processor? And please, no phone calls.

    Interesting!  After that I saw your post I looked into the matter a little further.  Here is a link to additional information.

    You must mark this post as solved.  It will help users more easily find answers to their problems.

    I wish you a beautiful day, Syzodia!

  • Failed to load the data in Cubes (Unusual behavior) BSO

    Hello

    For spending a few days we are facing a weird problem trying to load data into cubes (11.1.1.2) BSO on linux 64-bit...

    It is a single environment, which has been used for the last 5 years with no problems.

    We tried all possible means (copy/rename/recreate an existing application), but loading is not going through new applications...

    The status in EAS console current shows even for a small set of data of 10 records. We have also combined security, permission to file, but everything is in tact.

    Note that we have no useful information in the newspapers (app and essbase.log)

    Also tried otherways mentioned below without success:

    (1) increased agent threads and threads in Server

    (2) tried to use the Essbase Excel add-in to load data

    (3) tried to load data using Maxl

    (4) I tried Essbase server restart



    It would be great if the guru in the forum would help us resolve this issue.


    Thanks in advance



    Concerning

    Krishna...

    I'm glad that you were able to understand it.

    Concerning

    Celvin Kattookaran

  • Unusual behavior of battery.

    Last night, I left work with a full battery on my pre.  I made a brief phone call and checked my email and calendar before you go to bed.  When I woke up the battery was dead.  (The phone not light until I charged at work for a few minutes.  When I put the phone on the charger, an icon that I had never seen before were displayed: a huge battery with a lightning bolt inside.)  Will of my rest usually phone battery charged from one day to the next without any problem.  Any thoughts?

    I suspect that a request was left pending.  Also, when I got the Palm Pre, I noticed that the AP news show would cause the battery to drain all night so I had to remove this application.

    I suspect that most of these 'weird' battery drains is the result of the work performed.  What I understand an app can be running and not show upward to the card.

  • Unusual heating

    When I connect my phone to charge my charger adapter heating like Burning Hot; I have try several Apple Chargers but same problem.

    Since you seem to use software in beta on your device, this might be a reason for the unusual behavior. Set it back to factory settings, in order to exclude a software problem.

    As a beta tester you have been given special instructions on how to do that, things relating to the beta software may not be discussed here, sorry.

  • Dialer iOS10 freezes successive

    Hello

    I upgraded my 6 s iPhone iOS 10 over the weekend and since then my Dialer app freezes successive, basically he becomes insensitive and even the app closing and reopening does not help, the only option is to let it hang for 10 to 20 seconds that he comes back to life.

    Any idea?

    Kind regards

    Alberto

    Hi alberto_il,

    Thank you for using communities Support from Apple. If you encounter unusual behavior with one of your 3rd party applications after a recent update of iOS, you can find information and troubleshooting described in the following article useful:

    If an application you have installed unexpectedly closes, unresponsive, or will not open - Apple Support

    Kind regards.

  • Mac stops when left to idle for a few seconds

    Basically, the title says it all.

    Whenever I leave the mac without any kind of interaction, he will either urge me to "Put my Mac to sleep" / "Shut Down", or he will die just on its own.

    I checked other messages and son of on and off site, but I can't find one that fits my situation. I even tried to bring it to an Apple Store to have examined him just in case there was something wrong with the hardware or system. But it was working fine when they checked. So I thought it was OK. But right after I brought home and it works, it would still be acting weird as it has always been.

    I tried resetting the PRAM and SMC, and same repair permissions, everything I could get my hands on, but unfortunately, none of those solved the problem.

    All started last week when he stopped all of a sudden load and had initially showed unusual behavior. I can't even update the operating system because it wont let me not leave it alone, even for a minute, I'm getting more and more frustrated.

    Someone else has the same problem as me? If Yes, how can I solve this problem? Or you could at least give me any suggestions?

    Thank you.

    Best of ask Apple support. Contact - Support official Apple

  • Unwanted name changes and privilege

    I use OS X 11.5 in a MAC PRO early 2008 with several internal hard drives. Recently, I tried to put a file of my office in my hard dive record to start and couldn't do it up to what I had provided my admin password.  I had never run in before. I went to 'get info' for this hard drive and noticed that when he said "admin", "Read Write", he said, 'the wheel' 'read only '.  Well, I changed the privileges to where I could do what I wanted to do. I'm the only person using this computer. I would like to know if anyone knows the unusual behavior and what course of action should I take to prevent this inconvenience doesn't happen? Thank you.

    The behavior is not uncommon; It's normal. Permissions are defined for your protection like that you shouldn't change them, and if you change anything in the top level of the boot volume. Your personal files are part of your home folder, which is represented by an icon of the House with your name in the sidebar of a Finder window.

Maybe you are looking for

  • Cannot start my ipod touch 2G, need help?

    I got the ipod touch 2 G Sin 2014. But I was tired by dec.15. And now I need to start my ipod so, when I put in charge for the first time the low battery symbol came and I leave him in charge. I downloaded the latest version of itunes in my computer

  • Why is the capital of Australia, Canberra, are not not as an option of zone in Thunderbird.

    I was a complete new section calendar of Thunderbird options & when I looked for Canberra in the part of zone he wasn't there. You have listed all the State capitals and even a few small towns, but not the capital of a continent. I've been very happy

  • BIOS - need to reset password

    Hi guys,. Im a computer scientist with a child from the school and a few beautiful put the password of bios... ive tried to short-circuit the battery but still nothing. Any ideas? Thank youLauren

  • WSD Print device is not a driver

    Hello I am trying to connect to a printer Savin MP 2852.  My computer is Windows 7 64 x Home premium.  The printer appears in my menu-devices and printers, but I can't connect to it.  When I click on solve it looking for a pilot and fails.  What can

  • Cannot be found in Win7 Pro...

    If I'm trying to get my laptop by holding down the button [Windows] & tapping [F] (Find) - there is no search box on the start menu! -I get a message saying that no program is associated to this task. I also checked the Services, but Windows Search i