All Questions
0
votes
0answers
2 views
Zen Lightbox clears whole product list page
I recently installed Additional Product Images Plugin & Zen Lightbox in order for it to work correctly. Now when I installed the Zen Lightbox the whole page disappeard except for the inital ...
0
votes
0answers
2 views
Save custom macro toolbar modifications in Excel 2011 for Mac
I produced several custom macros in Windows, modified the XML so that a custom Ribbon Tab was visible in the 2013 version of Windows, and everything was wonderful.
I'm now trying to produce ...
0
votes
0answers
6 views
PHP return the value but false
I have this simple function:
function isMember($uID, $pdo) {
$status = getUserStatus($uID, $pdo);
if(isAllowed($status['status']))
return $status['status'];
return false;
}
Now ...
0
votes
0answers
2 views
Lucene.Net - Is it possible to query different index files, how?
I am just about to start development on a new website, so i am intending to include Lucene.Net as search API so I can have a good search capabilities in our new website.
The new website is going to ...
0
votes
0answers
4 views
Efficently updating a table's details?
What I'm trying to do is retrieve a Patient's details from the database, then based on the values entered in the textboxes, it will update the patient's details, but if the textbox is empty, I assign ...
0
votes
0answers
3 views
Blackberry Connection refused when deploying Phonegap app to device
)
I want to deploy my app that is created with Phonegap to my BlackBerry Z10 device.
I created some Hello World basic app with Phonegap, then in the terminal (Mac OS Lion) I ran following command:
...
0
votes
0answers
2 views
Connect ffmpeg to Visual Studio 2008
I try to connect ffmpeg to visual c++ like this, but when I type "./configure --toolchain=msvc" I have this error:
c99wrap cl is unable to create an executable file.
If c99wrap cl is a ...
0
votes
0answers
17 views
Using Arrays in Javascript
everyone!
I just started Javascript but I have done a little bit of Java prior to this. I have the question of how to use arrays. I have this code so far:
var a = prompt('What should the ...
0
votes
0answers
2 views
Javafx 2 - multiple view in a anchorpane
I would like to show an animation with two views - overview and closeup view in a same anhorepane.
The overview would show trucks travelling from point A to point B on a map background and the ...
0
votes
0answers
3 views
How to map Microsoft Visual Studio 2012 forward/back buttons to mouse forward/back buttons?
I have read posts about having add-ons or extra programs that listen to and respond to other buttons than the traditional left- right- middle- click functionality in a mouse. However, all of them were ...
0
votes
0answers
6 views
randomize or permuting values in a data.frame
I have a data.frame that looks like this: (my real dataframe is bigger):
df <- data.frame(A=c("a","b","c","d","e","f","g","h","i"),
B=c("1","1","1","2","2","2","3","3","3"),
...
0
votes
0answers
3 views
Getting different figure types with Google Web Fonts
According to this page:
[Raleway] is a display face and the download features both old style
and lining numerals, standard and discretionary ligatures, a pretty
complete set of diacritics, as ...
0
votes
0answers
2 views
Algorithm to Differentiate Between Types of Control Flow in a Compiler
I am writing a compiler and trying to figure out how to differentiate between the following different types of control flow:
-for loops/while loops
-if/else statement
-switch case
-do while loops
If ...
0
votes
0answers
4 views
What stands for lpfnWndProc?
I know
lp = long pointer
WndProc = Windows Procedure
but I dunno what is fn. fn stands for what?
WNDCLASS wndClass;
wndClass.lpfnWndProc = WindowProcedure;
0
votes
0answers
5 views
Export data from H2 database into CSV
I have a stand alone H2 server up and running gathering data. For testing I want to get data out my server into a CSV file. Are there any tools for that?