Tagged Questions
The twice tag has no wiki summary.
15
votes
5answers
7k views
MySQL pagination without double-querying?
I was wondering if there was a way to get the number of results from a MySQL query, and at the same time limit the results.
The way pagination works (as I understand it), first I do something like
...
5
votes
3answers
357 views
Destructor Called Twice While No Copy Constructor or Assignment Operator Gets Callled
I have a class:
class A
{
public:
A()
{
std::cout << "Constructor called" << std::endl;
}
~A()
{
std::cout << "Destructor called" << ...
4
votes
1answer
87 views
Maven descriptor (META-INF/maven) duplicate entry in archive
I'm facing a problem with maven build. I have several ejb projects. After maven build the jar-file contains the maven descriptor in META-INF/maven twice, i.e. if I extract files to disk 7zip asks to ...
4
votes
3answers
1k views
jQuery: textbox keyup firing twice
i'm having a textbox and assigned the following function (it's the only function assigned):
txt.bind("keyup",function(event){
if(event.keyCode==13)
{
var nu = $("#debug").html();
...
3
votes
2answers
505 views
MVC: C#: display content of a contentPlaceholder twice
I'm writing an MVC C# application. I use a masterPage and have
the title and content of other pages put in contentPlaceholders, which are
displayed on the master page.
On the MasterPage, I want the ...
3
votes
6answers
2k views
Double Postback Using IE8
I'm using ASP.NET and I have a save button on webform. When that save button is clicked (ONCE) and I'm using IE8 the event handler is executed twice. If I use compatibility mode it works just fine. ...
3
votes
4answers
816 views
SQL Server Triggers Firing Each other Question
I have an auditing trigger that automatically places the time something was updated and the user that updated in fields in all my tables. I have another set of triggers that write event information ...
2
votes
1answer
133 views
PHPMailer 5.2.0 sends out 2 mails each time
First of all; sorry if this has been asnwered before, I have searched for the last couple of days with no luck.
I am using PHPMailer 5.2.0 to send a mail from a form, which is called by an AJAX call ...
2
votes
2answers
135 views
QTCaptureDeviceWasConnectedNotification problem
I am developing a Desktop application that lists the webcams connected to the system. When the user selects the web-cam app streams from the device to the QTCaptureView.
I have registered to the ...
2
votes
4answers
3k views
Javascript fires two events - onkeypress and onclick
Problem is when I press a key over a radio button, element MyFunc fires twice - once for "onkeypress" event, another time for "click" event.
Question "Why?" I need to handle this by two different ...
1
vote
1answer
63 views
onClick takes two clicks to populate results, HighCharts
My issue revolves around having to click a button twice to populate the results desired. I am using HighCharts to draw a chart, but the updateTime3Period() function must be called twice before the ...
1
vote
2answers
61 views
javascript disable second onclick
I have a javascript:
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var Delay = ...
1
vote
1answer
80 views
How to start an activity twice?
I have an acitivty A. From there, you can click in the UI and go to activity B that has, among other things, a ListView. In the activity B I have a menu that takes me to activity C. Inside that ...
1
vote
5answers
164 views
Android: setOnClickListener to Buttons. Firing twice when pressed too quick
I have a problem with an app i'm currently making for Android phones. I have an Activity that has two Buttons. The point is if i press both buttons fast enough (that's not a good user behaviour), ...
1
vote
7answers
76 views
How can I change a string twice (building on the previous changes) in Java? (code inside)
for example, say I have a string called names and I want to .toUpperCase and then use the .replaceAll function before printing it.
The problem I'm having is that only one step is applied at a time ...
1
vote
1answer
89 views
Pages loading twice
I'm using mIRC to open a socket to a website. The logs from the DB show that the page is opening at LEAST 2 times, sometimes 3. The 2nd time is usually 2 minutes from the first time. However, the ...
1
vote
1answer
391 views
jquery delegate() events (mouseover mouseout) fires twice
i have the following script firing mouseover and mouseout always twice!
what do you suggest i do wrong (unbind, return e.g.)? i tried a few things but
nothing helped.
here is the code:
...
1
vote
2answers
277 views
Dynamically added buttons (using jQuery) have to be clicked twice to fire the click event already bound to the button
I dynamically add a select button that can be clicked to select a given contact from the list being appended to a table.
I have to click anywhere in the document before I can click on the dynamically ...
1
vote
0answers
210 views
android saving image twice to SD-card
hi to all i have a code that downloads an image from a website and saves it on the SD-card
when i send 2 web addresses for some reason it only downloads the first image 2 times and saves them both ...
1
vote
3answers
279 views
Maven phase executing twice
I require to generate some sources, so i attached a plugin goal to the generate-sources lifecycle phase.
When I run mvn package it works fine, but when I run mvn install I noticed that my source ...
1
vote
2answers
108 views
problem calling java function, only first finds matches.. close? reset? dispose?
I've got this java function that extracts strings from Inputstreams and returns a List. It uses java.util.Scanner and java.util.regex.Pattern.
Problem is, it only seems to work the first time I call ...
1
vote
3answers
912 views
jQuery append on hover is called twice
I'm trying to achieve something like you have in the back end of Wordpress where when you hover over a row in the the table of posts, it displays the edit, trash and preview links.
However, when I ...
1
vote
1answer
140 views
How to evalute a string twice in Powershell
anyone know how to evalute a string twice in powershell?
from example
$l1 = yes
$l2 = no
for (i=0;i -lt 2; i++)
{
echo $1$i
}
1
vote
2answers
185 views
jquery draggable get its content JS fired twice
I noticed the first time you drag it around and then cancel the dragging, the js in the dragged item will fire another time, after that, everything seems normal, any idea?
1
vote
1answer
617 views
On forcing download: File Download dialog opens twice in IE6 SP1
My ASP.Net page is supposed to create a document and force its download (open a "File Download" dialog). It works fine on most browsers but for some reason, on IE6 SP1 (windows 2000) the "File ...
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 ...
1
vote
2answers
466 views
iPhone UIImage - Image Randomizer Crashes If It Comes Across the Same Image Twice
I am building a game that pulls images randomly. After doing some testing I have realized if the same image is called twice, it crashes. I learned this by after completing the first game, I returned ...
1
vote
2answers
2k views
asp.net Page loading twice when making an underlying connection
I have a aspx page that seems to be loading twice when I enter the Url to the page.
In this page's loading event, I'm making an connection to a server to retrieve a document and then I output the ...
0
votes
0answers
13 views
All of my pages are loading twice is it something to do with my .htaccess?
I noticed after performing mysql queries that my page is loading twice with every load,
I know this as I added this to the top of my script,
session_start();
if (!isset($_SESSION['counter'])) {
...
0
votes
0answers
17 views
JEditable displaying ok and cancel buttons twice?
This is a strange error that I have run into, never seen it before and it doesn't rank on Google when I searched for a solution.
Whats happening is that when I click on say a text area the editable ...
0
votes
0answers
83 views
js recursive function is called twice
A have a recursive function, that every 5 seconds retrieves some data via jQuery.getJSON.
The problem is that the function is called twice.
First request is OK. How does the second request is ...
0
votes
2answers
68 views
Joomla JError::raiseWarning() shows twice
I'm writing a Joomla plugin that looks more or less like:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class plgSystemTest extends JPlugin {
...
0
votes
3answers
62 views
jQuery each looping twice, why?
I've got a script setup, the loop code is here as is the html structure
http://jsfiddle.net/OwenMelbz/mPVbE/
it basically searches the non-empty id's of the li and puts them into a csv string.
...
0
votes
1answer
139 views
how Prevent Twice Page_Load Running - Page.IsPostBack Is always false
in a strange situation my page_Load Runs twice and all of my codes are in page_Load.
i can not use Page.IsPostBac because in both of Page_Loads, it is false.
but what is strange situation ?
i have a ...
0
votes
2answers
52 views
JQuery animate same item twice
I'm animating an image a certain amount from one menu button. It slides out per menu button. Then there's another link that when clicked the image needs to slide out more. This isn't happening.
...
0
votes
2answers
84 views
Display double encoded string as HTML from XML source using XSL
I have a source of XML that contains content that I need to display in a web page as HTML using XSL. One of the XML nodes contains a double "HTML encoded" value. This is the one I need to output HTML ...
0
votes
0answers
32 views
Drupal 6 Loads Page Twice
I was about to post this as a question after 4 hours of debugging. Then I figured it out so I thought I would share my experience, maybe save someone the time.
I have a custom module that generates ...
0
votes
0answers
21 views
What may cause twice execution when AutoEventWireup is set to true ASP.net 4.0
Until now i never paid attention to the AutoEventWireup at my aspx pages. I just noticed and after quick search i found that its performance degrading is not very important. But i also read that it ...
0
votes
0answers
91 views
Xcode: Why does my flip animation flip twice?
I'm having a little problem. I have an UILabel which have an UILongPressGestureRecognicer. When the UILongPressGestureRecognizer is called my app is supposed to switch to a new view using a flip ...
0
votes
1answer
106 views
Wordpress plugin hook called twice
this is the first plugin I am devloping and I think I made some mistake calling a function (of the plugin) from the theme, because when it is active a hook is called twice :S
Here some simplified ...
0
votes
0answers
123 views
observeValueForKeyPath:ofObject:change:context: is called twice for the key path AVPlayerUIReadyStatus
I am using AVPlayer for playing videos in my iPhone application. To know if AVPlayerLayer is ready I am observing the key path AVPlayerUIReadyStatus using the call:
[AVPlayerLayer-object ...
0
votes
1answer
146 views
JavaScript setTimeout Runs Twice
I am trying to make a function that starts in exact intervals to keep stanble update rate. The problem is that it seems to execute in 2 channels. This is the log:
timeElapsed=141; ...
0
votes
0answers
104 views
Delayed::Jobs Running Twice on Heroku?
I have a problem running Delayed::Job on Heroku. Most of the jobs that are queued for delayed execution run twice (occassionally just the once). So most of my Sendgrid emails are sent out in ...
0
votes
2answers
225 views
Android default camera app opens twice
I am starting the default camera app on the android to get a picture in my app using the following code:
//create parameters for Intent with filename
ContentValues values = new ...
0
votes
7answers
99 views
ajax jquery needs one click more
I have two php files,
say xyz.php
Code is :-
<?php
echo "hello";
?>
2.say abc.php
Code is :-
<script type="text/javascript" src="jquery.js"></script>
<script ...
0
votes
2answers
68 views
Why is the slideup called twice (intermittent issue)?
I have a function which I call the slideup with additional tasks/steps. Intermittently, the slideup code within the function is called twice. Can someone spot what I did wrong?
Global Variable
...
0
votes
0answers
80 views
Android, when saving image from frame, it's saved twice on sdcard
I want to save an image from an framelayout on the sdcard. I works very well so far, but it gets saved twice. First on the path I want it to be saved, second in "\DCIM\camera\". How do I prevent the ...
0
votes
0answers
61 views
rails running partial twice
I have two partials, _dialogBox and _friendsList. the dialogBox partial includes the friendsList partial and sends it a whole bunch of variables.
_dialogBox looks like this:
<div>
some ...
0
votes
1answer
554 views
jQuery datepicker popup twice
I am using IE7 (have to), Java Server Faces 1.2, latest version of jQuery datepicker for dynamically generated data rows situtation. Also need support user manully enter dates. Datepicker works fine ...
0
votes
3answers
401 views
jquery ajax call firing twice
hi people i have this jquery, which makes a call to a page to insertt an email into a news list.
the call is being fired twice, the urls have a strange _ parameter which i have not added the two urls ...