0
votes
0answers
3 views

How to implement a page using modal windows and auto refresh divs when they are closed?

I'm trying to implement a page in which a user add Children or/and Adults through a modal window and after closing this modal window, the person added appears in the main page. It's like configuring a ...
-1
votes
1answer
9 views

which better HTML5 or OpenGl Es

I am new to android , I want to develop a simple learning game for physics , I am a little confused which to use for drawing and Graphics OpenGL Es Or Html5 Please Help .
0
votes
0answers
13 views

Invalid Column Name error with Hibernate createSQLquery

This is a smaller version of a larger query I'm trying to get working. When I run the query I get the following error. I've tried removing as much of the query as I can to try to find the guilty ...
0
votes
0answers
10 views

Returning values of fields on active subform

I'm trying to pass data from a form with a subform into a microsoft word document, form and subform in this image: I have code for passing the form data, but I'm not sure how I reference or request ...
0
votes
1answer
18 views

How to combinate characters in a string once?

I have searched on the internet for a while for this problem. I need to make a function in Haskell that makes from a input string all possible combinations without duplication. Example: combination ...
-2
votes
3answers
15 views

How can I concatenate ' in a string using python

I am trying to add ' at the end and beginning of the string. I have str1 = 'abc' str2 = 'def' strf = str1 + str2 print strf It gives output abcdef I need 'abcdef' I have tried join ...
0
votes
0answers
3 views

VS 2010 Deployment project remove Welcome dialog

How to remove Welcome dialog? When I delete it from user interface menu i get error: Unable to build dialog module group named 'Start'. Is it possible to skip this dialog?
0
votes
0answers
9 views

Implement two way scrolling in android xml

I just want to implement a two way scrolling (horizontal and vertical), but the catch is I want it to fill all the space. This is what I got: <ScrollView android:layout_width="match_parent" ...
0
votes
0answers
3 views

Error Installing Reddit on a Mac OS X 10.8

I'm working through the issues trying to install Reddit on a Mac OS X. I realize this is most easily done through a VirtualBox install on Ubuntu. Indeed, I have that running already. However, I want ...
-1
votes
0answers
22 views

PHP static variables and objects

I have a function that is called once for initiation, and then later as a callback. I need some of the values that were defined in the initial setup to be accessed in the callback. I am unsure of ...
0
votes
0answers
9 views

How do I find the right gradient mix from looking at an image of a gradient?

I have the following image: I need the proper gradient that can make this work but being new to css I can't figure it out. Some colors I've tried playing with are: 6FBFC5 66BAC0 2F9BA3 i ...
0
votes
0answers
3 views

Do Layer Backed NSViews Break the View Hierarchy?

I am trying to create an application where movies are played in NSViews that may move behind other views. I want to use AVFoundation so I will be rendering video to an AVPlayerLayer. However, video ...
0
votes
0answers
7 views

calculate european iban with javascript

I have the german "Bankleitzahl" and the account number, now I would like to calculate the corresponding IBAN with javascript, so I don't have to enter my banking-data on an untrustworthy website. ...
0
votes
0answers
3 views

Is it possible to paste a list to a select2 field and test each item in the list?

I am using Select2 to manage large lists of data. Users have expressed a desire to be able to paste a list to the Select2 field in order to select various items at once instead of manually entering ...
0
votes
0answers
5 views

Conditional Validation Message in ASP.NET MVC 2 using .NET 3.5

I am trying to implement a conditional validation in one of my projects. I have two fields public virtual int DType{ get; set; } [IsCorporateValidation(ApplicationType="DType",ErrorMessage="{0} ...
-6
votes
3answers
37 views

How to know how a loop has ended

While writing a program, I have gotten into a strange situation. I need to know whether a for loop has ended normally, or due to break. Is there any way to know this? Thanks in advance!
-3
votes
3answers
47 views

What is the purpose of GetHashCode [duplicate]

Why do people use GetHashCode and what is it used for. I did a google search on this topic and it is not clear why and when programmers use this method. Can someone explain this GetHashCode method?
3
votes
1answer
24 views

generating all combinations of nested tuples in python

Here is a short but complete program in Berkeley Logo: to choices :menu [:sofar []] if emptyp :menu [print :sofar stop] foreach first :menu [(choices butfirst :menu sentence :sofar ?)] end And ...
0
votes
1answer
26 views

How to echo out an array of arrays using ForEaches

I have a form that asks the user to enter certain information about his or her cat, then the user may submit his information and it will be transferred to the database. I want this information to be ...
0
votes
0answers
3 views

Comparing MATLAB AR model algorithms

I'm currently trying to build an AR model to approximate the error process in a sensor system. And I'm comparing the different parameter estimators in MATLAB. I have sets of data that i'm trying to ...
0
votes
0answers
7 views

want to make android sip client

I want to write an application which make call and send message over internet. I have gone through SIP framework for android. I have also referred some open source library like SIP Droid, IMS Droid, ...
-2
votes
0answers
11 views

Profiling Xbox 360

I have a game where I need to improve the performance on 360. I know profilers like DotTrace but I only used it for a week until my trial run out (still helped me a lot on an other project). So, I ...
2
votes
1answer
37 views

SimpleDateFormat inconsistent parsing error

The sample code speaks for itself: private void parse() throws ParseException{ SimpleDateFormat sdf = new SimpleDateFormat("MMM/dd/yyyy"); Date started = sdf.parse("Sep/22/2004"); ...
0
votes
0answers
15 views

NoClassDefFoundError for inner class upon trying to enter main

I've got a fairly simple program, built by ant using a basic jar task. This task was copied and modified from an existing task in the build.xml file for another program which works fine. The new ...
-4
votes
1answer
48 views

delete, new [] and “pointer being freed was not allocated”

Search results indicate I'm getting "pointer being freed was not allocated" either because I use delete on objects created by new [] or I forgot to create a copy constructor or because of memory ...
0
votes
1answer
5 views

Django modelformset_factory() filtering

I'm needing to filter out a significant amount of objects from my query. Currently, it is grabbing all objects in the class, and I want to filter it to the relevant ones which are in a querystring. ...
0
votes
0answers
2 views

Modern resources for effectively mastering MFC quickly

I am looking for modern resources for effectively mastering MFC quickly. Ideally, I want resources that give the more recent lessons learned as opposed to the original "Hello Worlds" that ignore the ...
-1
votes
3answers
25 views

run javascript on change of <select>

I'm trying to run javascript on change of a , but not even a simple alert is working. What am I doing wrong? $('#spellingSuggestions').on('change', function(){ alert("hello"); }); Here is the ...
0
votes
0answers
2 views

webapp2 authentication with own user model and sqlalchemy

For my application I use webapp2, sqlalchemy/postgres. Iam pretty happy with webapp2, things were easy, until now... Iam trying to implement user authentication using webapp2.extras.auth and writing ...
0
votes
0answers
11 views

bootstrap responsive design under 768px config

im new with bootstrap and im trying to make my responsive web using bootstrap, isotope and expression engine. i made my web it working whit the default bootstrap characteristics and for that reasons ...
0
votes
0answers
4 views

Wordpress best practices: custom wp_table or wp_postmeta - wp_usermeta split

I'm working on a plugin that would allow a user to upload photos using filepicker.io. I want the photos(stored in the DB as a url) to be associated to the post, user(if logged in) and the comment but ...
0
votes
0answers
3 views

HighStcok: One navigator to control two xAxis?

I have created two xAxis one at top and another at bottom (with opposite: true) in my highstock chart. But the problem is that navigator is controlling only the bottom xAxis. Changing the navigator ...
0
votes
0answers
11 views

Javascript not working in rails asset pipeline

I had written some jQuery for a partial which resided in a js.erb file. This jQuery turned into general functions and I decided to put into the asset pipeline instead i.e assets/javascripts/myfile.js ...
0
votes
0answers
5 views

spring mvc+java, all requests happen twice

I am tired of debugging this for the last 3 days. Why is every request being called twice? Here is how my web.xml is configured: <context-param> ...
7
votes
8answers
73 views

Should 2 Java objects of different classes ever be equal?

I'm trying to write some generic code to define class equality and hashcodes based on a list of fields. When writing my equals method, I was wondering if, based on Java convention, it should ever be ...
0
votes
1answer
9 views

Design approach for multiple database connection like DB2, MySQL etc using JDBC

Hi I have Java application which connects to different databases like DB2, MySQL etc. One way I can think of is in a configuration file we configure databases and create different JDBC Connection ...
0
votes
0answers
8 views

How to secure my Web API - MVC4 with Android/iOS apps

I've been reading quite a few questions here on SO about securing web api's using api keys, tokens, hmac ect and haven't found the answer I am looking for. I'm working on a MVC4 web application ...
0
votes
1answer
14 views

Selenium regex for trademark?

I'm new to regex and selenium in general but I have to asser t that a text simmilar to this: © Negurici 2012. All rights reserved. Email: negurici@gmail.com Exists within the site, mostly I have to ...
0
votes
0answers
4 views

INTERNAL_SERVICE_ERROR PayPal REST API https://api.paypal.com/v1/payments/payment

Using "LIVE" credentials, I'm getting an INTERNAL_SERVICE_ERROR accepting a credit card payment, using this resource: https://api.paypal.com/v1/payments/payment. Same error happens on the web and via ...
0
votes
1answer
5 views

Groovy Grails get controller parameters

I do an AJAX request with some data. I pass a list (for example, [6, 9]). When I print all parameters println params in controller, I get: [books[]:[6, 9], action:someAction, ...
0
votes
1answer
15 views

iOS UITableView height issue when 3.5 inch simulator display

A UIViewController (not using Interface builder) with a navigation bar, a toolbar and a admob banner. Below is the code to calculate the height of the UITableView by removing the height of the admob ...
0
votes
0answers
7 views

Ocaml - picture, point, circle

I'm learning Ocaml and found a problem that we never covered in class. I have defined: type picture of 100x100 points (which are represented with integers) function point: int*int -> bool ...
0
votes
0answers
5 views

Magento cart can only take one item

Our cart is facing the following issue - you can add one item to the cart - but not a second one. I have already check all the obvious in the system section for restrictions on the quantity (e.g. ...
0
votes
1answer
42 views

overloading >> operator giving me run time error C++

Can anyone help me. Below is the code which I'm trying to execute. There is no compile time error but the program crashes when the control goes to string copy statement. I'm trying to fix it for ...
0
votes
0answers
11 views

Select row in DataGridView in mouse_click event

I have a DataGridView on a form. When I right-click a row, I need the program to open a context menu. With this context menu I want to be able to modify the data in the DataGridView. I have gotten ...
0
votes
0answers
2 views

XAML datagrid to excel

I have a datagrid which populates a datatable, I want to export the DataTable to excel on click of a button. Can any one suggest me some pointers? I am new to this. Thanks, Sagar
0
votes
0answers
2 views

MVC 3 filter ICollection

I'm trying to create my first filter and till now I can filter (desc and asc) using date, title and author. Now I'm trying to get a filter on my categories. Categories is an ICollection. Does someone ...
-8
votes
0answers
13 views

Site that store a database using mySQL

My project is to store database in the Internet and access it using Android application. How is that possible.
0
votes
0answers
7 views

Open popup.html anchor in new tab

My problem atm is with manifest v2. Since I've been developing this extension I've been facing a lot of problems because the new manifest V2 of google extensions, that removed the capacity of inline ...
1
vote
0answers
7 views

Is optimization necessary when code generation is targeting a runtime with JIT?

I'm planning on writing a programming language targeting the .NET platform which led me to start thinking about the code generation aspect of targeting such a platform. I'm new at writing compilers ...

15 30 50 per page