Tagged Questions
The prevent tag has no wiki summary.
26
votes
3answers
19k views
prevent screen rotation android
I have one of my activities which I would like to prevent from rotating because I'm starting an AsyncTask, and screen rotation makes it restart. So is there any way to tell this activity "DO NOT ...
12
votes
12answers
18k views
C++ Redefinition Header Files
How do I prevent from including header files twice? The problem is I'm including the in MyClass.h and then I'm including MyClass.h in many files, so it includes multiple times and redefinition error ...
7
votes
12answers
567 views
Runtime exception, recursion too deep
I converted the pseudo-code here into C#, and have it recursively repeat 10,000 times. But I get a C# runtime error, StackOverflow Exception after 9217 times. How can I prevent this?
EDIT If it helps ...
6
votes
6answers
838 views
How do I prevent duplicates, in XSL?
How do I prevent duplicate entries into a list, and then ideally, sort that list? What I'm doing, is when information at one level is missing, taking the information from a level below it, to ...
5
votes
2answers
121 views
Prevent an accidental Back Browse
I have a client that just got the Apple Magic Mouse. We built a recipe website and she get very upset when she is inputting all the information for the recipe, then goes for her new mouse and ...
5
votes
1answer
3k views
How can I prevent my Android app/service from being “killed” from a task manager?
It is very important that my service stay running until someone with a password stops the service from my UI screen. My app runs great but it is designed to be turned on/off by parents (with a ...
4
votes
1answer
112 views
Prevent Android Reset
We do short-term rentals on cell phones and tablets. You need a tablet for a week, you can come to us and we rent it too you. What happens, is at the end of the week (or weeks) you need to return ...
4
votes
1answer
2k views
Prevent window redraw when resizing c# windows forms
What windows message or event can i listen to in order to stop a window from being redrawing every pixel of it's resize?
That is, when a user clicks on the edge of the window and starts to re-size ...
3
votes
3answers
43 views
Guarding against exceptions (preventative maintenance) when working with network / file system calls?
I have a friend who is in disagreement with me on this, and I'm just looking to get some feedback as to who is right and wrong in this situation.
FileInfo file = ...;
if (file.Exists)
{
//File ...
3
votes
1answer
57 views
Best way to prevent denial of service attacks on a website
I have a web app and I would like to prevent DOS attacks by blocking an IP address if it make many request in a short period of time.
For example, if the same IP address makes 100 request in a ...
3
votes
5answers
125 views
Prevent a Class having static instances of it created in C#
Is there anyway way to prevent a class having static instances of it created in C#. I don't think there is but it could be useful. E.g just some attribute to prevent it.
something like this
...
3
votes
2answers
998 views
jQuery prevent paste to iframe designmode from MS Word
I've seen some questions on catching the paste event. This looks helpful.
But I want to prevent paste on a designmode iframe from happening when the pasted content is not plaintext, but comes from MS ...
3
votes
4answers
2k views
Delphi. Prevent controls repainting for a time
For example I disable runtime two buttons. After I disabled first button it bacame gray, the second - it also became gray. But I do not know how to make the repainting simultaneous! I need something ...
3
votes
3answers
2k views
C# - Prevent duplicate MDI children forms
Is there a way to prevent the opening of a certain form within an MDI container if that said form is already opened? Thanks.
2
votes
1answer
21 views
jquery prevent auto trim while dynamically add table
I use jquery for adding table dynamically and I use this pattern:
var tbl = $("<table></table>").addClass("messageTable");
var tblRow = ...
2
votes
2answers
131 views
how to stop phone calls to be log in the call log on android
I'm writting an application that block some phone calls. I use a broadcast receiver to listen to incoming calls:
<receiver android:name="InComingCallReceiver">
<intent-filter ...
2
votes
4answers
88 views
jQuery if mouse is over for 2 sec. begin animation or don't animate at all
This is the situation:
I have a product list with 4 product in a row.
When you hover one of the products, a tooltip is shown. My concern is that if you move your mouse quickly from left to right or ...
2
votes
2answers
58 views
How to ensure all files written are below a given path (prevent directory access)
We have a C# application which will write files to a configurable location. The set of files (and relative paths) is determined at runtime.
We want to ensure that it cannot write files outside the ...
2
votes
2answers
109 views
Hackers constantly pull my login.aspx
I have a website with a protected content and I am recently started getting a lot of email alerts about unsuccessful logins. It gets really annoying, about one attempt in a minute or two average. ...
2
votes
2answers
325 views
How can I prevent Android from auto locking while activity (application) is in focus?
I'm new to android development. How can I prevent Android from locking while my application is in focus? When my application is out of focus I want to ensure than the android os will have its default ...
2
votes
3answers
2k views
prevent mobile from going into sleep mode when app is running
I want to prevent Android Mobile from going into sleep mode when my threads are sending HTTP request. as what happened while threads are doing HTTP calls mobiles goes to sleep mode and when user wakes ...
2
votes
1answer
554 views
How to prevent jQuery Mobile from making ajax calls when dynamically injecting html pages
Instead of using ajax calls, I create and inject pages into the $.mobile.pageContainer.
Dynamically creating jQuery Mobile pages using jQuery Templates
When I want to access a page with a hash tag ...
2
votes
5answers
95 views
jQuery prevent an image from being clicked on until other function is completed
I have a function preload.
I want to make it so that the image on my page does nothing when you click on it UNTIL the preloading has completed.
page loads
preloading begins - clicking on the main ...
2
votes
2answers
259 views
Why does a .NET application prevent Windows from shutting down?
One of my applications prevents windows from shutting down if it is running.
The only spot where I suspect the cause may be is FormClosing event handler, which is however quite standard:
EDIT: ...
2
votes
1answer
123 views
Preventing Email Spam?
I am working on an email program and I want to add a basic way to detect spam based on the domain/sender of the mail. One service that I was looking at was gossip ...
2
votes
1answer
320 views
Java JSpinner Prevent Letter Insertion
A JSpinner is used to store a number in my application (with a SpinnerNumberModel).
As expected, the spinner doesn't allow invalid characters (letters, symbols, etc.) to be stored. However, those ...
2
votes
2answers
754 views
How can I prevent duplicates in a WPF Listbox control?
I have a WPF listbox control that is declaratively bound to a textbox. The listbox's ItemsSource is an ObservableCollection that is built from an XML file. I can easily prevent duplicate entries in ...
1
vote
2answers
23 views
Prevent Child Components when Overlapping Panel
I have a WinForms application which has two panels which individually contain a usercontrol component (one in each panel). How ever, because both panels are the same size and in the same location, the ...
1
vote
0answers
48 views
Preventing Windows Error Dialog for Console App
I have a .NET service that monitors a windows share location for console apps written in Fortran, launches them, monitors STDOUT and STDERR, and copies output back to a shared location where it's ...
1
vote
1answer
58 views
Regex with iframe in Yahoo! Pipes
I'm building a Yahoo! Pipe to pull an RSS feed from Reddit which links to some content in the description. I'm using a regex to match the href attribute of the anchor link in an item.description ...
1
vote
1answer
80 views
jquery ui - prevent draggable to be dropped on another inside a droppable div
Im looking for a way to prevent a draggable block to be dragged over another draggable block and vise versa. Or maybe how to detect it's being dragged over it.
http://jsfiddle.net/J7azG/27/
Thanks in ...
1
vote
3answers
69 views
Spam getting through simple spam filter, but I don't know how
I have a simple spam filter (to prevent spam form submission) setup on a website by generating a random number and having the user enter it in. For some reason spam is still able to get through ...
1
vote
0answers
47 views
C# : issue with file access control
hi i have an issue with access control , i need to allow a file to be opened and executed but i want to prevent copying it to any other location , i tried all the filesystemrights but no luck i use ...
1
vote
2answers
53 views
.preventDefault() only working on first click
I have an image gallery where the image and the previous/next links under the image are repopulated using AJAX. I want to prevent the links for working here when the user has JS (so that the AJAX ...
1
vote
2answers
73 views
How can I prevent a re-start of my app when the phone is rotated?
In my app I don't want to restart a media player once it starts if the user rotates the phone. How can I prevent a re-start of my app when it is rotated because it stops the running sound file that is ...
1
vote
3answers
80 views
how to prevent 'manual execution' of external PHP script
In simplest terms, I utilize external PHP scripts throughout my client's website for various purposes such as getting search results, updating content, etc.
I keep these scripts in a directory:
...
1
vote
1answer
42 views
CoreData prevent delete of defaults
I have an entity in my coredata document based application.
I have certain default values that get created when a new document is created for that entity.
I need to be able to allow users to add ...
1
vote
1answer
208 views
How to avoid/prevent the system to draw/redraw/refresh/paint a WPF window
I have an Application WPF with Visual C# (using visual studio 2010) and I want to draw OpenGL scenes on the WPF window itself. As for the OpenGL drawinf itself, I'm able to draw it w/o problems, ...
1
vote
3answers
352 views
prevent page opening on an iframe?
How can I prevent page opening on an iframe using PHP?
Like Gmail inside an iframe ?
Thanks
1
vote
1answer
454 views
How to prevent the repeated values in table of iReport-3.6.7?
Hi Stackoverflow experts,
I'm trying to create a report using iReport-3.6.7 IDE. I've added a dataset which I used for filling the values into a Table in the report's Details section. ...
1
vote
2answers
133 views
Prevent setup project from uninstalling busy service
How do I prevent my setup project from uninstalling my Windows service while it is performing a lengthy work routine?
Ideally, MSI should report that the "Service is currently busy and cannot be ...
1
vote
1answer
449 views
CKEditor prevent the <p> at the begining
I am using CKEditor and what it does is add by default a <p> at the begining of the content.
Even if I set enterMode to be <br/>, it will only affect what the Enter key does, and keep the ...
1
vote
2answers
88 views
How to prevent a click event using jQuery.live
When I use the following jquery live function
$("a[rel]").live('click', function () {
e.preventDefault();
alert('clicked');
});
e.preventDefault(); does not work, because the action behind ...
1
vote
1answer
106 views
Prevent Opera form chaching mp3
again i try to prevent form caching mp3 files form my site. I use flash player, all files are outside public html i use this script to access to files
<?php
$file = $_GET['file'] . '.mp3';
...
1
vote
6answers
3k views
HTML prevent line break (between two table tags)
I have following code:
<table>
<tr>
<td>Table 1</td>
</tr>
</table>
<table>
<tr>
<td>Table 2</td>
...
1
vote
2answers
310 views
jQuery preventDefault stops rest of code working
I have this code where I am using jQuery to navigate to the next page, because I want some effects to take place before that happens. The problem is, that everything after the prevent.Default(); ...
1
vote
3answers
1k views
Flex - prevent dragging for certain items
how would you prevent dragging for some items of your List or DataGrid?
Let's say I had a list with two items: 'Tom' and 'Jerry'. Only 'Tom' should be dragable, not 'Jerry'.
Ideally I had a ...
1
vote
2answers
225 views
Grails way to prevent bad request “ids” on url
Like here in stackoverflow if i force put bad characters on URL in id place it redirects you to a page error. I would like to know if with Grails it has some kind of plugin for prevent id like: ...
1
vote
1answer
149 views
jQuery: preventing event from executing for duration of animation
OK, I've checked this thread:
http://stackoverflow.com/questions/1012447/prevent-click-event-in-jquery-triggering-multiple-times
and attempted to unbind/re-bind an event as described but to no ...
1
vote
4answers
197 views
Prevent decorator from being used twice on the same function in python
I have a decorator:
from functools import wraps
def d(f):
@wraps(f)
def wrapper(*args,**kwargs):
print 'Calling func'
return f(*args,**kwargs)
return wrapper
And I want ...