Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
4k views

Why can't you add attributes to object in python?

(Written in Python shell) >>> o = object() >>> o.test = 1 Traceback (most recent call last): File "<pyshell#45>", line 1, in <module> o.test = 1 AttributeError: ...
4
votes
4answers
5k views

In PHP, how do I add to a zero-padded numeric string and preserve the zero padding?

If I have a variable in PHP containing 0001 and I add 1 to it, the result is 2 instead of 0002. How do I solve this problem?
3
votes
1answer
35 views

XML search for a node from an array and add new data to a new node

From this tutorial - section on Adding nodes over at PHPFreaks, I did post over there but have had no replies strange as the tutorial was written by them. http://www.phpfreaks...ndling-xml-data When ...
3
votes
3answers
90 views

Adding to vector pairs

I have a vector pair like such: vector<pair<string,double>> revenue; It has nothing it it but I want to add a string normally and a double from a map like so: ...
3
votes
1answer
102 views

How to add a dll into .net toolbox permanently?

I am dropping the dll directly to .net toolbox to add controls( same as right click on .net toolbox and select choose items) but the problem with this is its only for current project. want to add it ...
2
votes
7answers
102 views

Javascript: Adding to an associative array

I have a function called insert which takes two parameters (name, telnumber). When I call this function I want to add to an associative array. So for example, when I do the following: ...
2
votes
3answers
109 views

Java doubles adding strangely (and no, it's not for money)

So this is the only relevant section of the code System.out.println("first term of " + firstTerm + " second term of " + secondTerm + " third term of " + ...
2
votes
1answer
1k views

contact api storing contact as a invisible contact.how to make it visible?

i am trying to add a contact in android using getContentResolver. first i created a ArrayList ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); then ...
2
votes
2answers
176 views

Is there a better way of adding a few characters to a TMemo?

I am using a TMemo to hold received characters from a serial port for viewing. As they arrive I am doing: Memo1.Text := Memo1.Text + sReceivedChars; This works fine but I presume it is rather ...
2
votes
1answer
600 views

jQuery adding multiple text boxes

I wonder if anyone could help me. I have a web page where there are some text boxes (dynamic amount, could be 3, could be 30) and each one a user can enter a number and I have a total count at the ...
2
votes
1answer
170 views

How to insert custom function in tinymce,

i'd like to know how i can make my custom function in tinymce. assumed that my function named as A. The function is inserting form html tag such as ", etc". From this function (button) people who ...
2
votes
1answer
76 views

PHP Inverting content adding (sorting)

I have this code which will include "template.php" file from inside each of these folders: "content/templates/id1", "content/templates/id2", "content/templates/id3" etc. etc. $page_file = ...
2
votes
4answers
245 views

help in displaying the sum of two matrixs (using linked lists)

hey there, Im having problems displaying my results in this program but the program compiles. Any idea as to what is going wrong?. The purpose of the program is to take two, 2 by 2 matrixes and add ...
2
votes
2answers
346 views

Adding functionality to a static website using ruby on rails

I am new to ruby on rails. I have a website with a lot of static pages. I want to add a number of dynamic pages to the website and these I am going to develop in ruby on rails. The functionality ...
2
votes
3answers
5k views

Adding custom class objects to listbox in c#

i have a class which looks like this public class Process_Items { String Process_Name; int Process_ID; //String Process_Title; public string ProcessName { get { return ...
1
vote
2answers
52 views

Add class to parents that have children using jquery

How would I go about adding a class only to the li parent that has children? <ul> <li><a href="#">parent</a></li> <li><a href="#">parent</a> ...
1
vote
1answer
48 views

C# how to add elements to a xml file

I'm using WinForms .NET 2.0 for my application. Previously, I used NET 4.0 to add an element to an existing XML file in this way: XDocument doc = XDocument.Load(spath); XElement root ...
1
vote
0answers
92 views

unable to add my facebook app to like page?

I am pretty much having the same issue as this previous thread [ unable to add Facebook app to page ] but the answer of placing a canvas URL isn't working for me. My app is all set and i can view ...
1
vote
6answers
55 views

Adding elements to an xml file in C#

I have an XML file formatted like this: <Snippets> <Snippet name="abc"> <SnippetCode> testcode1 </SnippetCode> </Snippet> <Snippet name="xyz"> ...
1
vote
5answers
60 views

Adding in javaScript

I am trying to create a reverse heading app and have gotten the subtraction part of it to work but when I punch in 30 for example instead of pumping out 210 degrees it pumps out 30180. My code is ...
1
vote
3answers
96 views

Adding data to a csv file through Python

I've got a function that adds new data to a csv file. I've got it somewhat working. However I'm having a few problems. When I add the new values (name, phone, address, birthday), it adds them all in ...
1
vote
4answers
49 views

javascript (math) adding up an array

I have two javascript text boxes. <input type="text" name="test" value="300" /> <input type="text" name="test" value="500" /> How can I use javascript to alert the total price of the ...
1
vote
7answers
74 views

PHP Switch and adding content to one variable

I'm using this function: function makeImmunities($data) { $immunities = explode(',', $data); foreach($immunities as $immunity) { switch($immunity) { case 'poison': ...
1
vote
3answers
138 views

adding objects to linkedlist/ arraylist in java

I created a storage class and use to as the data type for my arraylist/Linked list. private LinkedList bid_history; I have initialised this in my constructure as bid_history=new LinkedList ...
1
vote
7answers
64 views

PHP adding a character into variable

I have a form that when submitted loads in the post id into a variable. However some of the options in the form have spaces between the words. For example one option is "Kanye West" now it loads into ...
1
vote
2answers
75 views

Can someone explain to me why overflow always occurs when the last and second last carry bit are different?

overflow = c,n ⊕ c,n−1 I tried it with all four possible cases c,n c,n-1 -7+2 1001+0010 0 0 7+2 0111+0010 0 1 -7+(-2) ...
1
vote
1answer
367 views

Django Model; saving extra items in a ManyToMany field on save

So I am currently implementing a new tagging system for on top of an already existing database. The current tagging system makes use of a ManyToMany field, however the client would like to have a ...
1
vote
4answers
151 views

Oracle: Adding, renaming, and dropping columns on live database

What operations are permitted and not permitted on a live, running Oracle database? Specifically, how is this handled when adding, dropping, and renaming columns?
1
vote
2answers
239 views

How to add existent database into my app in iphone sdk

I have to add an existent DB into my iphone app I' ve tried to put it into the project's folder and used this init function -(id) initDatabase{ databaseName = @"mydatabase.sqlite"; // Get ...
1
vote
2answers
1k views

How to add an existing sub-folder (with/without child files/folders) to the solution?

The folder resides within my solution physical location but I can not find a command to add existing folder to the project from right-clicking. All I can see is "Add existing files". Trying to create ...
1
vote
2answers
1k views

i want to adding “xmlns” attribute in xml file using xslt

I want to following xml file output: <?xml version="1.0" encoding="ISO-8859-1" ?> - <T0020 xsi:schemaLocation="http://www.safersys.org/namespaces/T0020V1 T0020V1.xsd" ...
1
vote
2answers
163 views

C++ User Input When Initializing Values

I'm a student in an introductory C++ course. For one of our past assignments we have had to create a simple program to add fractions. Each new lab is just an application of new skills learned to ...
1
vote
2answers
120 views

Math - Adding with PHP

Basically I can't get it right. I need something like this: if($p == 1) { $start = 0; $limit = 16; } The numbers must add on depending on the value of the $p, e.g. if $p is 5 then the ...
1
vote
4answers
501 views

C# adding string elements of 4 different string arrays with each other

I need an advice about how to create new string array from 4 different string arrays: We have 4 string arrays: string[] arr1 = new string [] {"a1","a2","a3"..., "a30"}; string[] arr2 = new ...
1
vote
5answers
104 views

How to add a value to an existing value in php

Consider my variable $result to be 01212.... Now if i add 1 to my variable i get the answer 1213,but i want it to be 01213.... My php code is echo sprintf('%02u', ($result+1)); Edit: Answers to ...
1
vote
2answers
472 views

SiteCore Error: AddFromTemplate - Add access required

I am trying to add an image item to the content tree - but I get an access denied error at the following point: item.Add("New Node1"... The complete code of my method is: Sitecore.Data.Database ...
1
vote
2answers
92 views

In ASP.net is it better to use Server Controls within the ASPX page or create them dynamically in the code behind?

I generally prefer to add controls dynamically, like table and generic html controls, to the ASPX page, rather than add them in the ASPX page and set the properties dynamically. Which approach is ...
0
votes
1answer
73 views

R: combining frequency lists with different lengths by labels?

I'm a newbie to R, but really like it and want to improve constantly. Now, after searching for a while, I need to ask you for help. This is the given case: 1) I have sentences (sentence.1 and ...
0
votes
1answer
50 views

JQuery Googlemap V3 add markers

I am very confused as to why this would happen.. I am trying to add markers to a map, and it was working fine when I had an alert within one of the functions. Satisfied that is was working I took ...
0
votes
3answers
30 views

Total up values of table cell but only one value is allowed per row

I'm trying to create a scorecard program which allows the user to select cells of a table and gauge a score, I'm at a point where I can add each score the user clicks (admittedly in probably a very ...
0
votes
1answer
52 views

Adding a new field to existing Crystal report from a new table not already in the report

I have a existing crystal report with a query and a few tables already selected and some fields from those tables on the report. Now I want to add a new field (p.price) on the same report, from a ...
0
votes
1answer
215 views

Error when adding Reachability classes “Automatic Reference Counting Issue”

I'm trying to add Internet access to my application and in order to do this, I am testing to see whether or not the user is connected to a Wifi/3G network. To do this, I followed Apple's Reachability ...
0
votes
1answer
73 views

UI freeze when instantiating multiple images (silverlight wp7)

I'm having a problem with the UI freezing while trying to dynamically add lots of images to a canvas. what I'm doing is that when a button is pressed a lot of images should appear on the screen one ...
0
votes
0answers
31 views

Adding images to an existing image in java

I want to be able to separate the images I want to draw on the screen into categories, such as UI or sprites or blocks. Then use a constructor to make a single image that contains these various other ...
0
votes
1answer
67 views

How do I add just the 'f' button, without the 'like' or 'send' button?

How do I add just the 'f' Facebook logo to my site, referring people to our Facebook page, without adding the words 'like' or 'send?'
0
votes
0answers
49 views

Adding items in a xml file

I'd like to ask if It's possible to add, in execution time, new items such as city names, prices, so on to a XML file using Android. I know that I can add new items to a DB or create a ...
0
votes
1answer
44 views

How do I use the GTGE library? Java 2D games

I downloaded from the official site a zip containing a jar and a "docs" folder, inside there is a "com" folder and a "resources" folder. I want to be able to use this libray in my java IDE (eclipse) ...
0
votes
0answers
174 views

suddenly unable to link my business facebook page to my website

Initially I was able to link my business FB page to my website to generate "likes". However, now I see an error message that says this: "Could not retrieve id for the specified page. Please verify ...
0
votes
1answer
65 views

Adding vectors to empty JcomboBox

I am working on a program that integrates with mysql. I am querying the database and using a vector to populate a JcomboBox with the results . This is done as the GUI gets built and is working fine. ...
0
votes
1answer
37 views

Adding project to existing one

I have a table view project with multiple controllers and another one that is a image gallery project and have a Three20 project added to it. I found it in internet. So i want when a table view cell ...

1 2