This pattern is used to represent the state of an object.
0
votes
0answers
43 views
RunTimeException in Andrioid : java.lang.nullpointerException
I have seen similar answers for this question, but still I couldn't find the solution for my error.
I found out from debug that activities in my project is showing savedInstanceState = null
Can ...
0
votes
0answers
224 views
Python state machine
I have been working through MIT open course ware and have been learning about state machines. I have the machine working and it outputs properly except for with this one specific test. Any help is ...
0
votes
0answers
122 views
How to Get Proper Position in viewholder In android
I've created a downloading App, and i have a listview in an added custom row. The row has three items - one image view, a progressbar and 2 buttons. There is one button for download and another for ...
0
votes
0answers
7 views
storing state for displaying messages to users
I'm just wanting to know what is the most common method of storing state for displaying messages to users after a form has been be submitted.
When I handle the submission of the form, I will ...
0
votes
0answers
12 views
app engine not keeping session state?
I have GAE app that stores an application instance as a session variable:
req.getSession().setAttribute(app.getAppID(), app);
then later requests retrieve the app instance from the session and ...
0
votes
0answers
44 views
Refresh for Lazy Loaded JTree and maintain expansion state
I am facing issues while maintaining the expansion state of a Lazy Loaded JTree... The data is populated via swing worker on expansion of a node. Now I have to support a refresh for the same, such ...
0
votes
0answers
40 views
Why PlayStateChange dont work in c# WPF?
I have this code:
MediaPlayer.MediaPlayer mp = new MediaPlayer.MediaPlayer();
private void main_Loaded_1(object sender, RoutedEventArgs e)
{
mp.PlayStateChange += ...
0
votes
0answers
100 views
Android CheckBox state is successfully reinstated after pressing back button, but not after pressing home button
If I press the back button to leave the activity and then return to it, the state of the checkboxes are reinstated in the onResume() method. When I press the home button, or if I lock the phone while ...
0
votes
0answers
60 views
Capturing onTouch event in a checkbox
How can I implement something like onTouchChangeListener instead of onCheckedChangelistener in a CheckBox?
I want my check boxes to be selected only by ActionDown. Does anybody know any example for ...
0
votes
0answers
70 views
Flex presentation model: should state be held in the view?
I have two instances of a view which are V1a and V1b. As they are instances of the same type they both use the same instance of the presentation model (PM1) as it is injected into each instance as a ...
0
votes
0answers
30 views
How can I prevent scrollbars from losing their state when the datacontext changes?
If I have a datatemplate that will end up using a scrollbar in one form or another, how can I retain the scrollbars position when the datacontext changes back and forth?
I've read that you generally ...
0
votes
0answers
37 views
window.location.hash when using frames
I have a website using frames, how can I use a window.location.hash (or something else)
so that I can link to the current state of the frames.
link to my site
(I am not advertising my site, the link ...
0
votes
0answers
88 views
iOS: get Bluetooth state (on/off) using Public api without GameKit framework
How can I get blutooth(v2.1) state (ON/OFF) in iOS using public api without GameKit framework?
0
votes
0answers
45 views
How to listen Motion events and return their value to the thread
I want to know how can I return state of events from onTouch the button to my thread. In code I use:
gameview.java (here I "listen" for specific actions from buttons):
public boolean onTouch(View v, ...
0
votes
0answers
93 views
XAML - Personalize button behavior
I'd like to personalize my button's behavior on some states, like PointerOver or Disabled. I've found this answer, wich gave me a big help, but I still don't get how to personalize the button with my ...
0
votes
0answers
61 views
Android: how to bind buttons?
Hi im learning android and im basing on on app that can be found: LINK
The question is... how can I bind own buttons that can control the bats?
In GameState.java I defined an example button:
...
0
votes
0answers
92 views
How can I get google trend result by city or state?
I am using
http://www.google.com/trends/hottrends/atom/hourly //for us
http://www.google.co.in/trends/hottrends/atom/hourly //for india
These are providing result by country this working ...
0
votes
0answers
196 views
Updated Fragment view state lost when using setRetainInstance(true)
I am trying to save fragment state. I have an activity and several fragments. The sequence of actions: add first fragment, change view manually (make visibility of first LinearLayout GONE and second ...
0
votes
0answers
77 views
What causes the error: Viewstate verification failed. Reason: The viewstate supplied failed integrity check?
I'm using a single server to host the application, and between 15h and 00h i had 1200 error of invalid viewstate, what can cause this error? in this specify moment? The Event Viewer do not report ...
0
votes
0answers
31 views
How to keep state of a viewcontroller when navigating?
I'm wondering basically how to "preserve" the state of a viewcontroller when you navigate away from the viewcontroller and back to it again in the future. I have a series of uitextfield's that I want ...
0
votes
0answers
26 views
Determine active caller without monitoring state change events
I have an application that needs to determine the phone number of an ongoing call.
I have seen examples of using the ACTION_PHONE_STATE_CHANGED broadcast intent to get the calling phone number at the ...
0
votes
0answers
64 views
Finding entities with same key in a graph for preventing “An object with the same key already exists in the ObjectStateManager” Error
I'm using EF code first for developing a 2 Tier Application, I used POCOs as my model entities that inherited from BaseEntity class and with some methods i handle Entity's state on client side:
...
0
votes
0answers
50 views
Android: Mutilple tables, multiple rows, one state drawable, click state works on some and not on others
I have a fragment view with four tables. Each table has dynamically added rows that have a background resource applied via the following method
TableRow tr = new TableRow(getActivity());
...
0
votes
0answers
47 views
Can't switch states - flash builder
I made a form for users to register.
Now my problem is when the user fills in the correct information and he presses the button submit the states won't change.
[Bindable]
private var ...
0
votes
0answers
65 views
How to update textView after returning from preferenceActivity call?
(Android 2.2)
I show a (TextView) textView1 in Spel.java in the onCreate() method, with the current value of a value stored in a PreferenceActivity file.
From the menu I start activity ...
0
votes
0answers
100 views
Elmah integration - Error 500 when trying to access elmah.axd
I'm trying to add the tool Elmah to my website to be able to log exceptions. Elmah is working since exceptions are logged into the table ELMAH_Error of my SQL Server Database.
The thing is, when I ...
0
votes
0answers
84 views
Extracting elements from STArray (similar to unzipping)
I'm having a slight problem implementing a particle based fluid simulation in Haskell for a programming competition. I currently have an array of particles that gets modified at each simulation step. ...
0
votes
0answers
178 views
Creating a two state button in Android
I'm trying to understand how to make a button that latches onto a value when it is pressed, when it's pressed again it unlatches.
My method for this is as follows:
boolean r1 = false;
boolean r2 = ...
0
votes
0answers
63 views
python shell: pickle entire state
When using either "ipython" or "code.interact(local=locals())", I'd like to have a way to save the entire program address space into a pickle file, and similarly a way to load such a file and then ...
0
votes
0answers
149 views
Stateful Session Bean lost state with Glassfish and Vaadin
I try to develop a chat application, in this chat application, I have a login Component:
package org.zambaux.chat.view.window;
import javax.ejb.EJB;
import ...
0
votes
0answers
77 views
Checkboxlist not maintaining state
I have something odd going on in my application. I have a checkboxlist on a page which is populated inside !Page.IsPostBack. I have another button on the page which uses this checkboxlist's selected ...
0
votes
0answers
57 views
Storing the state of an object in Android
i have two objects for mediaplayer mp and mp1.Both objects save the state of the media player.Here is the code
public Object onRetainNonConfigurationInstance()
{
...
0
votes
0answers
29 views
State Machines to correlate multiple data streams
I have gone through some papers that state machines could be used for stream data processing as correlating and joining multiple data streams.
Is anyone familia with this?
Is there any ...
0
votes
0answers
209 views
ASP.NET Wizard Control Save state
I use the wizard control and want to save the state.
My Problem is that the last state is gone, if a user for example goes to another page and the clicks the back button of the browser.
Of course i ...
0
votes
0answers
109 views
WegbGrid in MVC is not saving the state of my checkboxes between paging
Here is the aspx code which has webgrid and am binding here from my list. Am able to view Web Grid with Name, adress, IStrue columns and 10 rows with paging of 5. Howvever if I check any one of the ...
0
votes
0answers
128 views
Tracking state in separate tabs in MVC 3 application
Basically what I need to be able to do, and I already know it is not a good idea, I have fought tooth and nail to not do it, but I need to have it so each individual tab in tabbed browsers is treated ...
0
votes
0answers
77 views
Storyboard transition to save state of previous view controller
I have ann app that uses a single storyboard and two view controllers. They link and work correctly but on one view controller I have a scrolllview. Is it possible to return to the same state of the ...
0
votes
0answers
100 views
Change UI State in netbeans. Does Netbeans have a state window concept for Java?
I am creating a UI application which has multiple UI states.
I was wondering if I could manage states using netbeans functionality.
I had used flex before and they do have a way of managing states. A ...
0
votes
0answers
39 views
Stopping a timer when initiating a page curl
I am trying to create a pause menu for my application. In order to do this, I have created a pause button and a separate view controller in the storyboard to act as my pause menu and have made a page ...
0
votes
0answers
23 views
Restoring state to a component in a distributed system during that component's crash
Environment:
I have a distributed system with managers and a manager controller that sends messages using a message bus. These messages determine the state of the other managers. For instance, a ...
0
votes
0answers
97 views
Flex Component Lifecycle and Event Mechanism Using States
I have a custom component -ChildComp.mxml- that has one custom object and other Flex GUI components checkbox, textinput etc. These components' values binded to my custom object's fields.
In my ...
0
votes
0answers
66 views
Access Of Object From a Game State
At the moment, in my game in progress, I have a class called Client which contains an std::vector<State>. Basically each state has a startup/closedown, update/draw and pause/resume functions. In ...
0
votes
0answers
14 views
How to measure/compare performances when using Application state and static variables?
I've read using static variables instead of Application state in ASP.NET should be more effective. But, how can we prove it? I mean what particular technique (in code) to use?
Thank you in advance.
0
votes
0answers
347 views
android : phone state change different behavior first time after registering the BroadcastReceiver
In my application i have a broadcast receiver for phone state.
After i install my app , when i get first call, the state goes to ringing and immediately i get a state change to IDLE.
This is ...
0
votes
0answers
136 views
Complex mix of Web services - Stateless session - Stateful session bean
I'm a little confused with the mix that i have here. We are evaluating a product. And here is what the solution mix contains.
A Stateless Session bean is exposed as a Secure Webservice (Transport ...
0
votes
0answers
49 views
Soundcloud API : Getting wrong track state
I'm using Soundcloud API and when i get the infos of a track i just uploaded, i always get the state 'Storing'. In the API doc, the only states i should get are 'Finished', 'Failed' or 'Processing'.
...
0
votes
0answers
146 views
JBoss AS 5.1: How cluster merge views and state transfer when node re-join?
I have a question about JBoss AS 5.1: How JBoss AS 5.1 cluster does the merge and state transfer after a node re-join (this node is disconnect because of network off and then re-join when network is ...
0
votes
0answers
120 views
Why does Unmarshalling an Instance State Parcel fail if I use a short tag?
I came across an odd crash during unmarshalling a parcel in onCreate and was even more confused by the way I fixed it.
My app saves a TrackEntity object like this:
@Override
protected void ...
0
votes
0answers
40 views
Python chat server when can't guarantee page not reset?
I'm relatively new to Python, cgi, and passenger-wsgi, so please bear with me.
I set up a python script that's not much more than
import time
startTime = time.time()
def main():
return ...
0
votes
0answers
817 views
Country state dropdown in php and javascript
I read almost all titles which are related my question; however I couldn't figure out what I am doing wrong.
I have 2 tables (country and states), what I am trying to do is retrieve data from states ...


