0
votes
0answers
2 views

script nsis application version

I would like display in section description the version of the executable ? LangString DESC_SecSoftware ${LANG_ENGLISH} "Software PX" !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro ...
0
votes
0answers
3 views

Handling Android BroadcastReceiver to update GUI

I'm pretty new in using BroadcastReceivers and I'm developing an SMS application that can read and send. When I receive an SMS, I would like to update the GUI with the new SMS on the following ...
0
votes
0answers
5 views

Data-structure to achieve this

Came across this question on http://www.careercup.com/question?id=6005446611566592 Given a server that has requests coming in. Design a data structure such that you can fetch the count of the number ...
0
votes
0answers
11 views

How to save C# xml to an existing file

I have the following xml code (Highscores.xml): <highscore> <score> <name>Pipo</name> <points>200</points> </score> </highscore> I have a ...
0
votes
0answers
2 views

How to remove column attribute by liquibase?

I have a column attribute on update CURRENT_TIMESTAMP How can I remove it in xml changeset ? Database is mysql.
0
votes
0answers
2 views

VS2012 Post Build XCopy Exclude Not Working?

I have the following line in my post build events. I want to copy all files and folders except the file types in the excludedfileslist.txt (which current just has .cs in it) to my web project. xcopy ...
0
votes
0answers
3 views

Cometd connect request(AJAX) not working with IE8

I have an application which publishes notification from server to all channels using COMETD. It works fine with chrome and FF but not with the IE. In IE8 sometimes it works after a manual refresh(F5) ...
0
votes
0answers
3 views

How to solve error message about squirrel mail (ERROR: Connection dropped by IMAP)

I was setup squirrel mail in centos 6.4 and, i was installed imap(dovecot), squirrelmail, sendmail completely. and open, port 110, 143, 25. and, setting a squirrelmail about imap (through ...
0
votes
0answers
3 views

Using scala and java in play framework 2.1 : Session usage

I'm currently using the session() of play framework in my template : @if(session().get("email")==null){ <li><a ...
0
votes
0answers
2 views

Repository keeps reinitializing to the old repo

I had a repo up on github and have recently deleted it on github. I now want to push the same code to a new repo but every time i git init I get Reinitialized existing Git repository in ...
0
votes
1answer
11 views

why does not function eval work?

I use eval() to assign a list to a var: eval('mylist = [1,2,3]') but when I run it , I got a SyntaxError. What's wrong with it? If I cannot do assignment in the eval(), how do I assign a var in ...
0
votes
0answers
5 views

Can I send email automatically from app

I am developing an app. Can I know How to send a email from app with out using email window. ie, When I pressed a button I want to send mail automatically. Without using the mail window.
0
votes
0answers
6 views

Cross domain error even when ajax called made from same domain

I am making an ajax call to check username availability. The url to call is hardcoded in the js file. e.g http://abc.com/users/check_availability. Now when i make the ajax call from http://abc.com it ...
0
votes
0answers
20 views

PHP Basic Scrapping

I've just started PHP and I want to scrape a little page which I can't, I tried doing 'PREG_MATCH_ALL' but it just doesn't get the result I want.. Basically I want to scrape the youtube video links ...
0
votes
0answers
4 views

How to update static sql server tables?

I need algorithms for updating static(set-list, reference) tables from one database to the other one. I have a database calling Big and the other one calling Small. Small DB has same schema and ...
-1
votes
0answers
8 views

Show partial View in pop up window

I am new to MVC framework I need your support to succeed. I have a partial view and I need to show that partial view in a pop up window when a view is loaded. Please suggest me an optimal solution for ...
0
votes
0answers
2 views

Linking Play Developer Console to Google Wallet Error

I've a major issue with linking my Play Developer Console to Google Wallet. I've already search the Google Help for any solution and didn't find one. The problem is, that Error message appears after ...
0
votes
0answers
10 views

C - Socket Chat Server with thread - Nickname array

I'm doing a chat server using sockets and thread in C, but I have different problem : - I'm not able to send a message to client using his nickname - I've got a problem sending a message and attach ...
0
votes
0answers
3 views

How to get AsyncHttpClient onSucces value?

I have an AsyncHttpClient that makes a get request to an url. I will take the response of the method onSuccess(). I paste my code to a better explain.. CategoryActivity.java call method getXML of ...
0
votes
0answers
7 views

Could not load file or assembly NHibernate

Following weird issue: I created an application which is using nhibernate and I had no problems with it. Yesterday a colleague installed the program and got this error message: ...
0
votes
0answers
11 views

jQuery: Forcing to fadeOut() first and then prepend() div

On this page, when you click on text, div1 must fade out and delete itself and div2 must appear. The thing is script prepends div2 first and then div1 fades out. How can I force script to make div1 ...
-1
votes
0answers
9 views

Network On Main ThreadException in oauth2.0

I am getting Exception Network on main thread exception in onPageFinished of webview i implemented oauth2.0 for account authentication
0
votes
0answers
4 views

Android Alpha, Beta for Paid Apps on Google Play Developer Console

What about "Paid Apps" as Alpha/Beta testing... I am uploading one "alpha_version" apk under "Alpha" tab... I have tagged application as "Paid" app and also configured specific prices... (As Google ...
0
votes
0answers
3 views

Javascript framework 'blocked' in Google+ Hangout app (insecure content)

I'm trying to load a 3rd party library (specifically YUI2, to handle drag-and-drop) in a G+ Hangout app that I'm developing. It's just included at the top of the HTML file: <script ...
0
votes
0answers
3 views

MongooseJS Unique true but Allow duplicate

Im new to MongoDB and MongooseJS. I have scheme below. var mongoose = require('mongoose'); var schema = new mongoose.Schema({ name: String, email: {type: String, unique: true}, password: ...
-1
votes
1answer
10 views

Connecting to DB through internet

I have SQL Server DB in my computer, attached to my server. I want to access it through internet. Please advise what will be the connection string etc. for it. Thanks
0
votes
0answers
4 views

Service doesnot retains screen

I am new to android and developing an application which starts with a login page followed by many activities.As soon as the user logs in, a service is started which is stopped only when the user logs ...
0
votes
0answers
8 views

Using FileTime To save Creation Time using setTImes()

I have this problem. PROBLEM: i am making a program in which i am changing the TimeStamp of a file... Problem:::: The code i have written is working fine:: String text = textField.getText(); Date ...
0
votes
0answers
9 views

How to remove item from multidimensional object by value (javascript)

I need to remove item from multidimensional javascript object by value. For example, I have this objecť tree (screenshot contains only part): ...
1
vote
1answer
12 views

different pages on a site are all individual html files?

like this website(stackoverflow) i see many sites that have many different pages containing different contents. i was wondering that if they are all individual html files hosted on a server or they ...
0
votes
0answers
10 views

implicit conversion at call by value and polymorphism

Consider the following scenario: Some polymorphic classes: struct iClass { virtual ~iClass(){} }; struct CommonClass : public iClass { char str[128]; CommonClass() { ... } ... }; struct ...
0
votes
0answers
6 views

Create Active Directory Group using C#

I am creating an Web app for managing an Active Directory. I want to create a group in a certain container. List<Models.Group> groups = new List<Models.Group>(); PrincipalContext ctx = ...
0
votes
0answers
12 views

Model Binding Postback

I have 2 methods like this public ViewResult Detail(int Id) { if (Id != null) { Context context = new Context(); Poll PollDetail = ...
0
votes
0answers
5 views

ORA-01841 full year must be between -4713 and +4713

I wrote a query using ibatis and got an error code ORA-01841 full year must be between -4713 and +4713. Guess it has to do with dates but have no idea where. Follwing is the code. <select ...
0
votes
0answers
2 views

How to implement a ip white list secured spring integration http inbound gateway?

We want to add a white list on a spring integration http inbound gateway. I have googled for quite a while but found few useful. Is there some out-of-box filter in spring integration can do this? ...
0
votes
0answers
3 views

how to save kendo ui chart to image using PHP or java script

i would to convert chart to image, iwish that can saving to png or jpeg how to save kendo ui chart to image using PHP or java script
0
votes
0answers
3 views

Union of two join operations using Rhino ETL

I have to union two join operations. Basically I am trying to write ETL for the below query. SELECT Id, name, Type, created from a) UNION (SELECT Id, Name, Type, Date FROM b AS conResp JOIN c as CE ...
2
votes
2answers
22 views

“Grouping” enum values in C

If I had some enums like typedef enum { AN_TRISTATE_0, AN_TRISTATE_1, AN_NOTHING, AN_MOTOR_1, AN_MOTOR_2, AN_MOTOR_3, AN_SENSOR_1, AN_SENSOR_2, AN_SENSOR_3, ...
0
votes
1answer
8 views

UIImage resize performance and quality issue

I'm working with UIImage and like everyone else have to deal with retina and non-retina display adaptability. As for as I know, retina display requires double pixels. I'm wondering if I could simply ...
0
votes
0answers
6 views

how to create select box from a given list in rails?

I am passing a list from my controller @distinct_grade_list = Student.uniq.pluck(:grade) which creates the distinct list of grades from model Student now in my view page , how can i display it ...
-1
votes
0answers
4 views

USer roles in mongoDB

USer roles in mongodb is working in windows 32 bit os , where as the same sceneraio is not working in linux machine 64 bit OS. role is not getting applied to database level . Current environmet OS - ...
0
votes
0answers
3 views

nusoap webservice getting error as 'An error occurred on the server.'

i have created XML using dom and saved on my clientside. Then i have called nusoap web service (WSDL). I am calling one method which is present on server side, in that method first parameter is method ...
0
votes
0answers
4 views

Expressjs middleware example

Hellow I have code in my app.js, looking like that: app.use('/someurl', require('./middleware/somemodule')); -app.use instead app.all and module looks like: if(process.env.BLALAL === undefined){ ...
0
votes
0answers
2 views

Caculate scale portion in cocos2d

As you see on the image above, I have 2 rectangles. The yellow rect is scaled from the red one. I know width, height and crossline(c) of the red and the yellow we only know the crossline so : How ...
0
votes
0answers
6 views

How to generate keystore for google play?

I am trying to generate keystore for my google account, so I can upload my application to google play. I've type this both on jdk 1.07 and 1.06 keytool -genkey -v -keystore ...
0
votes
0answers
4 views

SBT simplicity examples

I went from Maven and am learning SBT(simple build tool) and it's really quite powerful and flexible tool. But I cannot say it's simple as it's name states. I would rather name it PBT(powerful build ...
0
votes
0answers
3 views

robotium test not starting

Here is my LoginTest.java package com.simpragma.tabi.activities; import com.jayway.android.robotium.solo.Solo; import android.test.ActivityInstrumentationTestCase2; public class LoginTest extends ...
0
votes
0answers
3 views

how to trigger ajax update with radio button in Tapestry 4.0?

I've got two radio buttons (value A or B) and palette area below. I would like show palette when value A is selected and hide it when B is selected, so ajax update. How to do it? I'm using old ...
0
votes
0answers
5 views

BadTokenException Unable to add Window Spinner in PopUpWindow

I know there are a lot of similar questions here, but I'm not able to transfer the answers to my problem (or I didn't find THE answer I need...) In my menu on actionBar (in onOptionsItemSelected) I ...
0
votes
0answers
9 views

How to get users last 20 updates from linkedin in android?

I tried this link How to get LinkedIn user updates in android? but using this link I am only getting current update...

15 30 50 per page
1 2 3 4 5 105008