The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
20 views

Invalidate () crashing

I am sending data to a class which i desired to change the layout. I send the data by the followinf way: while(connected){ //receive data through socket in = ...
0
votes
0answers
26 views

TextBox doesn't fire Invalidated event

Why TextBox doesn't raise Invalidated event when it's caret appear and disappear and when its text be changed ? class Form1 { TextBox t = new TextBox(); public Form1() { ...
0
votes
0answers
22 views

Android customview does not invalidate margins in onlayout or ondraw

I am having a problem with a custom view (which is a RelativeLayout) I made for an android app (API 8). I have implemented a custom view that displays small images on a canvas. This all works fine, ...
0
votes
1answer
29 views

Does NSTimer run across entire app?

If I start an NSTimer like this: @property (strong) NSTimer * messageTimer; self.messageTimer = [NSTimer scheduledTimerWithTimeInterval:10.0 target:self ...
0
votes
0answers
8 views

NStimer multiplies each time I reload view

I have a one viewController which serves for 2 screens (main and settings) in the view did load I have a timer that repeats unlimited times (checking condition)! when I load setting screen and go ...
6
votes
1answer
158 views

Why Is Custom View not Invalidating?

Im a noob to android development and I am having problems invalidating a view. I am using this tutorial and have no issues implementing it. However, when I change the background of the view, it ...
0
votes
0answers
29 views

Android: OnTouchEvent not worked before invalidate other object

I had the following problem. There are two classes: one extend surfaceview, other extend imageview. The first class has the reference to the second that with it to work. public class A extend ...
3
votes
0answers
117 views

Invalidating specific user's session causing own JSF page's navigation to break

I'm currently maintaining a Map of all currently active HTTPSessions in an @ApplicationScoped bean. (As per suggestions here, and in various other topics: Invalidate Session of a specific user) I'm ...
0
votes
0answers
20 views

existing state of has been invalidated

I built a webservice using SOA-BPEL to call Oracle PLSQL API. It works good most of the time but suddenly it says the below error. When i try to clear cache in our SOA-BPEL-Adapter datasource, it ...
0
votes
0answers
79 views

Draw/reDraw a looped set of images without redrawing other views in Android

I am requesting help solving a design issue and possible strategies to approach this problem. Goal- to display a looped set of gif images (Weather Radar loop) on a MapView that already has an ...
0
votes
0answers
43 views

How much time invalidate() takes for calling onDraw method of a view

Maybe for most applications this doesn't stands an issue, but, what if I want to redraw a view and my particular app requires a high resolution?.What I'm trying to say here is that you can have a ...
0
votes
0answers
97 views

C# Invalidate() and Update() doesn't call OnPaint()

delegate void UpdateD(); protected override void OnPaint(PaintEventArgs e) { MessageBox.Show("Painting"); //other stuff } public void Repaint() { if ...
1
vote
0answers
26 views

InvalidateRect called too frequently blocks other windows from redrawing

I develop audio plugins, which are run inside their hosts and work realtime. Each plugin has its own window with controls, which often contains some kind of analysis pane, a pretty big rectangle that ...
0
votes
1answer
41 views

Symfony2 renew Session and store value

My Users can change their passwords on a form. If this the form is valid I encode it, invalidate the session by using $this->get('security.context')->setToken(null); ...
1
vote
1answer
29 views

Determining for what user was a session invalidated

Using JBoss 5.1.0 GA. In the web.xml of my application I`m defining such session-invalidation timeout : <session-config> <session-timeout>5</session-timeout> ...
0
votes
0answers
30 views

How to cache filters?

I am about to implement sort and filter functionality for my site. I am planning to use memcache for caching results for individual pages(each filter applied is a different page). Issue is what ...
0
votes
1answer
93 views

Invalidating and ImageView outside of the MainActivity thread

My MainActivity's contentView/View can be refresh by simply using invalidate() anywhere after calling: setContentView(R.layout.activity_main); But if I were to call a Dialog in my item select: ...
0
votes
1answer
177 views

Ribbon Invalidate makes my outlook add-in crash

I have a pretty large outlook add-in with following ribbon.xml: <?xml version="1.0" encoding="UTF-8"?> <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" ...
0
votes
1answer
150 views

Why is onDraw not working when I call invalidate() within the onTouchEvent() method?

My friend and I are working an a piece of a larger Android project. What this piece needs to do is allow us to implement hand drawing on a touch screen using a bitmap and a surface view. To be ...
0
votes
4answers
97 views

How to “disable” a Java object?

I have a class like this: public class DatabaseSession { public makeCallOne() {...} public makeCallTwo() {...} public close() { ... } } If the user instantiates this class, I expect them to ...
1
vote
2answers
87 views

Cross-server communication in load-balanced ASP.NET web application

My ASP.NET application stores some expensive (to load) data in an application-accessible static field (using System.Web.Caching.Cache is inappropriate in this case). My application is also ...
0
votes
1answer
136 views

Android calling (post)invalidate from JNI fails

I'm writting an android application with a View thats mainly responsible for drawing on the canvas. And I have some native code (C++) which renderes the bitmap to be drawn on the canvas. So I'm trying ...
0
votes
1answer
104 views

NotifyDataSetChanged does not work in ExpandableListView

This is my Expandable List View: public class SnatchView extends ExpandableListView { public SnatchAdt m_adt; public FileBrowser fileBrowser; public SnatchView(Context context) { ...
0
votes
1answer
74 views

User control repainting only when window moved

I have a custom user control which displays waveform of an audio file. I've put two instances of controls on a form. The second instance works as expected while the first instance causes the problem ...
0
votes
2answers
73 views

Invalidate content of UI in android

I have a MapActivity and a Spinner. On Spinner there is OnItemSelected event which makes a content change of view. so i applied setContentView again on event of spinner onItemSelected because i ...
0
votes
0answers
85 views

Android authentication token invalidation does not work

I've read numerous posts about proper auth token invalidation in android but nothing seems works for me. Please, take a look at button click listener class. private class OnRateButtonListener ...
2
votes
1answer
127 views

PictureBox onPaint Clears Every Control

I've been having problems with onPaint event handler for a pictureBox. I've simplified the code, so right now I'm trying to achieve this: load the bitmap from path into pictureBox1 and draw a small ...
1
vote
2answers
192 views

Restore graphic after scroll panel

I'm using C# for developing a simple tool that has a picturebox inside a panel. The panel has property Autoscroll = true. If the Image of that picturebox is larger than the panel the panel has ...
0
votes
1answer
150 views

invalidate multiple rectangles or regions

I'm having problems with Invalidate() because it calls OnPaint before I'm ready... Invalidate(new Rectangle(x, y, width, height)) works fine when I need to repaint one and only one area, but what I ...
0
votes
0answers
128 views

my custom View control not Redrawing in Fragment

I have created my custom view control which extends from the View control, only drawing some information in the onDraw method. Everything works if I create the control on a regular activity layout. ...
0
votes
1answer
126 views

conversation gets destroyed when invalidating a session

I have a SessionManager which implements HttpSessionListener. In the SessionManager, I have a static hashtable of all active sessions. I am trying to create a function for forcing the invalidation of ...
1
vote
2answers
59 views

How to paint only visible area of my custom control in Swing?

Suppose I have big custom control inscribed inside JScrollPane or clipped by other reasons. How to determine from within paintComponent() method which coordinates are to paint?
0
votes
1answer
91 views

Invalidate a session for a filter unit test in Grails

I would like to test a filter that verifies if a session is valid but I'm not sure how to do it. My filter is something like this. class SampleFilters { def filters = { ...
0
votes
0answers
330 views

Using android slidingmenu lib with selector

I've been trying to use selectors in slidingmenu for 2 days without managing to make it work. Here is what I want to do : I've a menu which have a ListView in it. I want the selector to point at one ...
0
votes
0answers
15 views

Shake gesture + NSTimer

I have a shake gesture that triggers a couple of balls to move back and forth. The "only" problem I have is to make the balls to stop when I stop shaking the device. Can someone guide me in the right ...
0
votes
1answer
261 views

Tomcat doesn't invalidates session after calling session.invalidate()

I have a webservice in jaxws to which I can connect after login. Everything works perfectly, I pass login and password and I'm logged in, and I'm creating session for this user on WS server. After all ...
0
votes
0answers
30 views

How to invalidate a client session if not acknowledged in few seconds from EMS server

I have TIBCO EMS Queue and I have 2 receivers ( 2 MDBs) in exclusive mode from this queue, it means only one will be actively consuming and other one is in standby mode, now here is my challenge, If ...
0
votes
1answer
413 views

Unable to destroy session in jsf managed bean

Currently, I am creating a web application for an online shopping cart and I need to maintain session on each jsf page.. My questions are : How can I create and destroy session in managed bean How ...
1
vote
0answers
319 views

Android How to call invalidate in SurfaceView

I have created a class from SurfaceView.I wanted it that when i touch on the screen then the screen will be refreshed by calling invalidate() function. But in my implementation invalidate () is not ...
0
votes
1answer
82 views

ListField's method invalidate does not work

I'm writing a custom list field, but it doesn't not work when i invoke invalidate method. The screen is always empty, while the data of list field is not null or empty! Please help me figure out the ...
0
votes
1answer
116 views

Using invalidate() , java.lang.NullPointerexception

I am currently working on a Connect four game I have managed to develop the app to point to where the game knows what column the user has selected. I am currently trying to change the colour of the ...
0
votes
0answers
36 views

Invalidate not working in an activity

I'm having a problem with an invalidate which is not working. Here is my class : public class NotesActivity extends Activity { private static final String TAG = NotesActivity.class.toString(); ...
0
votes
1answer
103 views

Grails 2 - Too many Ajax calls will invalidate user sesssion

*update: sorry, i didn't give a context. I'm using Grails 2.1.2 with the spring security plugin installed. Js lib -> jQuery (latest) I have a page that submits lots of synchronous ajax calls (not my ...
0
votes
1answer
108 views

Objective-c timer wont invalidate

Here is my situation: I am making a countdown app which works fine but does not appear to stop when I call [stopWatchTimer invalidate];, and I have no idea why. Here is my code: - ...
2
votes
1answer
194 views

Android: invalidate(dirty)

It seems like Android really doesn't like invalidate (Rect dirty), which is used to invalidate only part of a canvas. When I invalidate part of a canvas (shown in green below) and a ToggleButton ...
2
votes
1answer
131 views

c++: swapping vectors and pointer invalidation?

I seem to be having a problem with swapping the elements of two vectors. I have two vectors, x and y that hold objects of type myclass. The myclass has only one public member w. I create a vector of ...
0
votes
0answers
57 views

using invalidate on google map

I'm having an issue trying to call invalidate to redraw my map after I use map,panBy. I want to do this because after I use this function there's a grey space on the map like the map needs to be ...
5
votes
1answer
222 views

Redraw Window Control Synchronously (with blocking method)

What I am trying to do is to cause a control (in the same process, but which I have no control of) to redraw itself, and for my code to block until it finished redrawing. I tried using UpdateWindow ...
1
vote
1answer
177 views

Once again: Why my ImageView is not refreshing?

I know this question has been answered several times before, but this newbie could not find an answer that worked. I tried to implement a panorama viewer using a TouchImageView (extends ImageView). ...
2
votes
1answer
656 views

Android GoogleMaps V2 doesnt refresh

My App displays the driven route of the user. After a few seconds, the map stops loading new content and looks like this: My Code: XML <fragment ...

1 2 3 4 5